$(document).ready(function(){
	
	$('.main-menu UL LI').hover(function(){
		$(this).children('UL').stop();
		$(this).children('UL').css('height', 'auto');
		$(this).children('UL').slideDown(300);
	},function(){
		$(this).children('UL').stop();
		$(this).children('UL').slideUp(300, function(){
			$(this).css('height', 'auto');
		});
	});
	
	if ($('#carousel').length) {
		$('#carousel').jCarouselLite({auto: 800, speed: 1000, visible: 6});
		if($('#carousel').length) {
			if ($.browser.msie && $.browser.version <= 6) {
				$("#carousel IMG").reflect({height: 54, opacity: 0.2});
			} else 	{
				$("#carousel IMG").reflect({height: 30, opacity: 0.2});
			}
		}	
	}

	$('.slider').before('<div id="nav">').cycle({ 
		fx:     'fade', 
		speed:  1000, 
		timeout: 4000, 
		pager:  '#nav' 
	});
	
	$('#slider').hover(function(){
		$(this).children(".nav-bg").stop();
		$(this).children("#nav").stop();
		$('.nav-bg').animate({right: 0});
		$('#nav').animate({right: 24});
	}, function(){
		$(this).children(".nav-bg").stop();
		$(this).children("#nav").stop();
		$('.nav-bg').animate({right: -63});
		$('#nav').animate({right: -40});
	});
	
	
	$('.thumb-pictures A').hover(function(){
		curr = $(this).attr('href');
		$(curr).stop(true,true).fadeIn(900);
		
	}, function(){		
		$(curr).stop(true,true).fadeOut(500);		
	});
	
	$('.small-box .link A').hover(function(){
		$(this).children('.tooltip').css('display','block');	
		
	},function(){
		$(this).children('.tooltip').css('display','none');
		
	});
	
});
