$(function(){	
	window.onscroll=scrollcall;    
    window.onresize=scrollcall;  
    $(window).load(function () {
        scrollcall();
    });
	$('#searchButton').click(function(){
		$('#searchForm').submit();
	});
});
function scrollcall(){
	$('#right').css("left",(($(window).width() > $('#bodyWidth').width()) ? (($(window).width()-$('#bodyWidth').width())/2)+$('#bodyWidth').width():$('#bodyWidth').width()));
	$('#right').css("top",($('#bodyWidth').offset().top+'px'));
	$('#topNav').css("left",(($('#top').width()-$('#topNav').width())));
//	$('#topNavLink').css("left",(($('#top').width()-$('#topNavLink').width())));
}
