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

$(function () {
	$.preloadImages("images/bg_menuItem.png", "images/bg_menuOver.png");

	$('.dropdown').each(function () {
	$(this).parent().eq(0).hover(function () {
		$('.dropdown:eq(0)', this).slideDown(300);
	}, function () {
		$('.dropdown:eq(0)', this).slideUp(300);
	});
	});
	
	
	
	
});
	
	
	
