/****************************************************
* @author Thomas Pimentel : Vzion Designs*
****************************************************/

jQuery.fn.dropDownMenu = function(){
	var element = this;
	var menuItemCount = $(element).find("li a img").size();
	var menuListing = $(element).find("li a img");
	
	menuListing.each(function(){
		var imgHeight = $(this).height();
		var imgWidth = $(this).width();
		var subList = $(this).parent().next('ul');
		
		subList.each(function(){
			$(this).remove();
		});
		$(this).parent().parent().mouseenter(function(){
			$(this).children("a").css("position", "relative");
			$(this).children("a").css("z-index", "101");
			$('<div id="dropDownMenu" style="width: ' + imgWidth + 'px; position:absolute;  top: '+ ($(this).position().top + imgHeight) + 'px; left: ' + ($(this).position().left + 1) +
					'px; background-color: #2a2b2b; border-radius: 4px; -moz-border-radius: 4px; border: none; -moz-box-shadow: inset 0px 1px 3px 0px #999;' +
					'-webkit-box-shadow: inset 0px 1px 3px 0px #999; box-shadow: inset 0px 1px 3px 0px #999; z-index: 100;"></div>').insertAfter($(this).children("a"));
			$("#dropDownMenu").css("display", "none");
			$("#dropDownMenu").append(subList);
			$("#dropDownMenu").slideDown("fast");
		});
		
		$(this).parent().parent().mouseleave(function(){
			$("#dropDownMenu").remove();
		});
		
		$(window).focusout(
			function(){
			$("#dropDownMenu").remove();
			});
	});
};
