function customOpenCloseMenu(){
	jQuery(this).animate({
		opacity: 'toggle',
		width: 'toggle'
	}, 500);
}

$(function(){
	
	// Main Menu Dropdown
	$("#nav").dropmenu({
		openAnimation: customOpenCloseMenu,
		closeAnimation: customOpenCloseMenu,
		openSpeed: 300,
		closeSpeed: 200,
		closeDelay: 500,
		zindex: 100
	});
	
	
});

$(function(){
	$("#mainContent a").hover(function(){
		$(this).find("img").stop().animate({
			opacity:0.4
		}, 300);
	}, function() {
		$(this).find("img").stop().animate({
			opacity:1
		}, 300);
	});
});
