// JavaScript Document
$(document).ready(function() {

   $(document).mousemove(function(e){

	 var move = e.pageX - ($(window).width()/2);
	 var moveh = e.pageY - ($(window).height()/2);
	
	 var calc = (move * 5)/ ($(window).width()/2)
	 calc= Math.round(calc)
	 var calch = (moveh * 15)/ ($(window).width()/2)
	  $('#ag1').css("width", 8 +calc +"px");
	  $('#ag2').css("width",15 -calc +"px");
	  $('#ag3').css("width",15 -calc +"px");

	  $('#topfade').css("top",-7 +calch +"px");
	  $('#mainrd').css("top",76 +calch +"px");
	  $('#downfade').css("top",256 +calch +"px");
	  $('#shad').css("top",256 +calch +"px");
	  $('#contentright').css("margin-left",488 +calc +"px");
	//   $('#status').html(e.pageX +', '+ e.pageY +  ', '+ $(window).height() +  ', '+  $('#ag1').width() + ',' + calc);

   }); 
   
});

