// Preload Images
$(document).ready(function(){
  $.preloadCssImages();
}); 

// Menu
$(document).ready(function(){

	$("ul.subnav").parent().hover(function() { //When topnav item is in mouse over state.

		//Following events are applied to the subnav itself (moving subnav up and down)
		$(this).find("ul.subnav").slideDown('fast').show(); //Drop down the subnav on click

	}, function(){ //When the mouse hovers out of the subnav, move it back up
			$(this).find("ul.subnav").fadeOut('fast'); 
  });

});
