// JavaScript Document

// JavaScript Document

function scrollWin(){
	$('html, body').animate({
		scrollTop: $(".content").offset().top
	}, 2000);
}

function scrollup(){
if(jQuery.browser.opera){jQuery('html').animate({scrollTop: jQuery('.content').offset().top}, 2000);} else jQuery('html,body').animate({scrollTop: jQuery('.content').offset().top}, 2000);
}
function scrolldown(){
if(jQuery.browser.opera){jQuery('html').animate({scrollTop: jQuery('.content').offset().top}, 2000);} else jQuery('html,body').animate({scrollTop: jQuery('.content').offset().top}, 2000);
}

