(function($){

	$.fn.hoverMenu = function(options){

		
		var opts = $.fn.extend({}, $.fn.hoverMenu.defaults, options);
		var count = 1;
		
		return this.each(function(){
		
			$this = $(this);			
			
			/*
			if ($.browser.msie ) {
				$("#" + $this.attr("id") + " li").hover(function(e){
				
					$("#search .keyword").css("display", "none");
					$("#search .category").css("display", "none");
					$("#search .promotions").css("display", "none");
					
				}, function(){
				
					$("#search .keyword").css("display", "block");
					$("#search .category").css("display", "block");
					$("#search .promotions").css("display", "block");
					
				});
			}
			*/
			
			$( "#" + $this.attr("id") + " li ul ").hover(function(e){				
				var bgImg =  $(this).siblings("div").css("background-image");	
				$(this).siblings("div").css("background", bgImg + "  no-repeat left bottom");
						
			}, function(){
				var bgImg =  $(this).siblings("div").css("background-image");	
				$(this).siblings("div").css("background",  bgImg + " no-repeat");
				
				
				
			});
			
		});
	
	};//hoverMenu
	
	
  $.fn.hoverMenu.defaults = {

    name: 'propButt'

  };//defaults

	
})(jQuery);

