$('document').ready(function(){
	
	//entry point
	
	if( $('#featured') )
	{
	    $("#featured").tabs({fx:{opacity: "toggle"}}).tabs("rotate", 5000, true);  
	}
	
	$(function() {
		$('.gallery-image a').lightBox({fixedNavigation:false});
	});
	$(function() {
		$('.gallery-image-big a').lightBox({fixedNavigation:false});
	});

	$( "#tabs" ).tabs();

		
    


	
	
	//if( $('#menu-left') )
	//	$('#menu-left').accordion({ autoHeight: false,collapsible: true });
	
	if( $('#menu-right') )
		$('#menu-right').accordion({ autoHeight: false,collapsible: true });
		
		
	
	$('#hidden-submit-button').hide();

	$('ul#menu-top li.menu-top-item a').hover(
		function(){
			if( !$(this).parent().hasClass('selected') )
				$(this).children('img').css('margin-top', '-50px');
		},
		function(){
			if( !$(this).parent().hasClass('selected') )
				$(this).children('img').css('margin-top', '0px');
		}
	);

	$('.icon a').hover(
		function(){
			$(this).children('img').css('margin-top', '-28px');
		},
		function(){
			$(this).children('img').css('margin-top', '0px');
		}
	);

	$('#search-field').focus(
		function(){
			$(this).css('background-position', '0px -30px');
		}
	);
	$('#search-field').blur(
		function(){
			$(this).css('background-position', '0px 0px');
		}
	);
	

	$('#submit-button img').hover(
		function(){
			$(this).css('margin-top', '-25px');
		},
		function(){
			$(this).css('margin-top', '0px');
		}
	);
	
	
	
});


