$(document).ready(function(){
	var navDuration = 150; //time in miliseconds
	
	$('#rightcol img').animate({ opacity : "0.85" }, navDuration);
	
	
	$('#topnav a').hover(function() {
		$(this).animate({ paddingTop: "30px", paddingBottom: "37px" }, navDuration);
	}, function() {
		$(this).animate({ paddingTop: "33px", paddingBottom: "34px" }, navDuration);
	});
	
	$('#rightcol img').hover(function() {
		$(this).animate({ opacity : "1.0" }, navDuration);
	}, function() {
		$(this).animate({ opacity : "0.85" }, navDuration);
	});
	
});