var $j = jQuery.noConflict();


$j(document).ready(function(){
	$j("#menu-top-navigation-menu a, #menu-bottom-navigation-menu a").hover(function() {
		var imgName = $j(this).attr('title');
		$j("#rollover img").attr("src","http://www.satcoffee.com/wp-content/themes/satellitecoffee/images/navigationrollover-" + imgName + ".jpg");
			}, function() {
		$j("#rollover img").attr("src","http://www.satcoffee.com/wp-content/themes/satellitecoffee/images/navigationrollover.jpg");
	});
});
