$(document).ready(function(){
   			
	//Turn on top menu options
	$('ul.menu').superfish({
		animation:			{height:'show'},
		autoArrows:		false,
		onBeforeShow:	function(){
									$(this).find("li:last").css({ 
																  'border':'none'
																});
									$(this).find("li:last a").css({ 
																  '-moz-border-radius-bottomleft': '6px',
																  '-webkit-border-bottom-left-radius': '6px',
																  '-moz-border-radius-bottomright': '6px',
																  '-webkit-border-bottom-right-radius': '6px'
																});
		}
	});
	
});

//Preload the menu images
jQuery.preloadImages = function(){
	for(var i = 0; i<arguments.length; i++){
		jQuery("<img>").attr("src", arguments[i]);
	}
}