// JavaScript Document

// JavaScript Document

function scrollWin(){
	$('html, body').animate({
		scrollTop: $("#container").offset().top
	}, 2000);
}

function scrollup(){
	if($.browser.opera){$('html').animate({scrollTop: $('#container').offset().top}, 2000);} else $('html,body').animate({scrollTop: $('#container').offset().top}, 2000);
}
function scrolldown(){
	if($.browser.opera){$('html').animate({scrollTop: $('#container').offset().top}, 2000);} else $('html,body').animate({scrollTop: $('#container').offset().top}, 2000);
}
