/*!
 * jQuery banner code
 */
 
$(document).ready(function(){
//To switch directions up/down and left/right just place a "-" in front of the top/left attribute
//nav 1
$('.link1').hover(function(){
	$(".cover").stop().animate({left:'-596px'},{queue:false,duration:600});
});
//nav 2
$('.link2').hover(function(){
	$(".cover").stop().animate({left:'-1192px'},{queue:false,duration:600});
});
//nav 3
$('.link3').hover(function(){
	$(".cover").stop().animate({left:'-1788px'},{queue:false,duration:600});
});
//banner back
$('.bannerback').hover(function(){
	$(".cover").stop().animate({left:'0px'},{queue:false,duration:600});
});
//banner back
$('.navmenu').hover(function(){
	$(".cover").stop().animate({left:'0px'},{queue:false,duration:600});
});

});
