$(document).ready(function () { 

/*Menu animation*/
$('.page_item').find('img').stop().rotate3Di('-5', 250);
$('.page_item').hover(
	function () {$(this).find('img').stop().rotate3Di('5', 300);},
	function () {$(this).find('img').stop().rotate3Di('-5', 250);}
);
$('.plus-img').hover(
	function () {$(this).css('margin-top','-30px');},
	function () {$(this).css('margin-top','0px');}
);
	
$('.live-btn-img').hover(
	function () {$(this).css('margin-top','-44px');},
	function () {$(this).css('margin-top','0px');}
);
$.get('/limm2011/gallery1/',
	function(data){
		$("div#footerSlideshow").html(data);
		$("div#footerSlideshow ul").moodular({
        	controls: 'stopOver',
			auto:true,
			continuous:true,
			direction:'right',
			scroll:1,
			callbacks: [slideshowHasMoved]
		});
		$('a[rel="picslide"]').colorbox({transition:"fade"});
	});


$('input#s').css('opacity',0.5);

});

function onWindowLoad(){
		
	/*Adjust header*/
	currentHeight=$('#framer').css('height');
	$('#header').css('height',currentHeight);
	
};

function slideshowHasMoved (){
		footerSlideshow=$('#footerSlideshow');
		$('img',footerSlideshow).hover(function(){$(this).css('opacity',0.4)}, function(){$(this).css('opacity',1)});
		$('a[rel="picslide"]').colorbox({transition:"fade"});
	}
