
window.addEvent('domready', function(){
	new SmoothScroll({ duration:700 }, window); 

	var content_placement_px = 592;
	var cur_win_height = window.getHeight();
	//if(cur_win_height > 659 && cur_win_height <= 768 )
	if(cur_win_height <= 768 && cur_win_height > 659)
		content_placement_px = window.getHeight()-50;
		
	$('content').setStyle('top', content_placement_px);

});

