$(document).ready(function()
{
	speed=1000;
	
	$(window).bind("load resize", function()
	{
		height1=$("#content1").height();
		height2=$("#content2").height();
		dy=(height2/height1).toFixed();
	});
	
	$(".preimage").mouseover(function()
	{
		$(this).addClass("preimage_hover");

	});	 
	
	$(".preimage").mouseout(function()
	{
		$(this).removeClass("preimage_hover");
	});
		
	$("#content1").bind("mousemove", function(e)
	{
		y=e.pageY-90;
		$(this).scrollTop(y*dy);
	});
});
