$(document).ready(function()
{
	speed=1000;
	j=0;
	
	$(window).bind("load resize", function()
	{
		height1=$("#content1").height();
		height2=$("#content2").height();
		dy=(height2/height1).toFixed();
		
		if ($(window).height()<=768) $("#scroll_menu").show();
		else $("#scroll_menu").hide();
		
	});
	
	$(".preimage").mouseover(function()
	{
		$(this).addClass("preimage_hover");

	});	 
	
	$(".preimage").mouseout(function()
	{
		$(this).removeClass("preimage_hover");
	});	
		
	$("#but_top1").mouseover(function()
	{
		scroll1=setInterval('$("#content1").scrollTop(j); j=j-5;', 1);
	});	
	
	$("#but_down1").mouseover(function()
	{
		scroll1=setInterval('$("#content1").scrollTop(j); j=j+5;', 1);
	});
	
	$("#but_top1, #but_down1").mouseout(function()
	{
		clearInterval(scroll1);
	});
	
	$("#content1").bind("mousewheel", function(event, delta) 
	{
		if (delta<0) j=j+5; 
		else if (delta>0) j=j-5;
		
		$("#content1").scrollTop(delta+j);
	});
});
