$(document).ready(function () {
	$().mousemove(function(e){
		//$('#status').html(e.pageX +', '+ e.pageY+' '+$('#content').innerWidth()+' '+$('body').innerWidth());
		
		var ww=1740;
		var wh=1600;
		var halfwindow=$('#window').innerWidth()/2;
		var halfwindow2=$('#window').innerHeight()/2;
		//console.log(halfwindow);
		var halfcontent=3264/2;
		//console.log(halfwindow);
		
		//$('#status').html(halfwindow/halfcontent);
		//$('#content').css('margin-left',(e.pageX-($('#window').innerWidth()/2))/(($('#window').innerWidth()/2)/(3264/2)));
		//$('#content').css('margin-top','-'+(e.pageY-($('#window').innerHeight()/2))/(($('#window').innerHeight()/2)/(2448/2)));
	
		//$('#content').css('margin-left',((e.pageX/2)-halfwindow)+'px');
		//$('#content').css('margin-top',((e.pageY/2)-halfwindow2)+'px');
		//$('#content').css('margin-top',(halfwindow2-e.pageY)-e.pageY*(halfwindow/halfcontent));
		//$('#status').html((e.pageX-($('#window').innerWidth()/2))*-1);
		//best goed $('#content').css('margin-left',((e.pageX-($('#window').innerWidth()/2))*-1)+'px');
		
		//beter nog$('#content').css('margin-left',((e.pageX/(($('#window').innerWidth()/ww)))/2)*-1);
		$('#website').css('margin-left',(((e.pageX/$('#window').innerWidth())*ww)-e.pageX)*-1);
		$('#website').css('margin-top',(((e.pageY/$('#window').innerHeight())*wh)-e.pageY)*-1);
		//console.log($('#content').css('margin-left')+' '+e.pageX);
	});
	
});
