// JavaScript Document

//jQuery start
$(document).ready(function(){		
		
		
	$('.showItem').hover(function() {
		$(this).children('.details').stop().animate({ "top" : '141px'}, 400); 
	}, function() {
		$(this).children('.details').stop().animate({ "top" : '195px'}, 200);       
	});
	
	$('#rightbutton').click(function() {
		$('#menu').animate({ "left" : '-540px'}, 400); 
	});	
	
	$('#leftbutton').click(function() {
		$('#menu').animate({ "left" : '0px'}, 400);   
	});	
		
	
				
// End jQuery
});

function moveNav(){
	$('#menu').animate({ "left" : '-540px'}, 400); 
}
