	
	$('document').ready(function()
	{  
		$('.menu_bot').mouseover(botOver);
		$('.menu_bot').mouseout(botOut);
		$('.menu_bot').mousedown(botDown);
		$('.menu_bot').mouseup(botOut);
		
		$('ul.sf-menu').superfish();
		
		$('.slideshow').cycle({fx: 'fade'});
	});
	
	function botOver()
	{
		if( $(this).find('.menu_bot_esq').attr('class').indexOf('menu_sel')==-1 )
		{
			$(this).find('.menu_bot_esq').css('background-position','0 -35px');	
			$(this).find('.menu_bot_meio').css('background-position','0 -35px');
			$(this).find('.menu_bot_dir').css('background-position','0 -35px');
		}
	}
	
	function botOut()
	{
		if( $(this).find('.menu_bot_esq').attr('class').indexOf('menu_sel')==-1 )
		{
			$(this).find('.menu_bot_esq').css('background-position','0 0px');	
			$(this).find('.menu_bot_meio').css('background-position','0 0px');
			$(this).find('.menu_bot_dir').css('background-position','0 0px');
		}
	}
	
	function botDown()
	{
		if( $(this).find('.menu_bot_esq').attr('class').indexOf('menu_sel')==-1 )
		{
			$(this).find('.menu_bot_esq').css('background-position','0 -70px');	
			$(this).find('.menu_bot_meio').css('background-position','0 -70px');
			$(this).find('.menu_bot_dir').css('background-position','0 -70px');
			
			window.location = '?s=' + $(this).find('.hidden').html();
		}
	}
