(function($){  
 $.fn.maprollover = function(options) {  
	 var defaults = {  
			 cl: '',
			 map: '',
			 defaultImage: ''
	 };
	 var options = $.extend(defaults, options);
	 return this.each(function() {  
		 var obj = $(this);
		 //Nascondo la classe
		 $('.'+options.cl).hide();
		 //Mostro l'oggetto di partenza
		 obj.show();
		 //Catturo il Mouse Over sulla mappa
		 $(options.map+' area').bind('mouseover',function(event){
				$('.'+options.cl).hide();
				$('#'+$(this).attr('rel')).show();
			});
		 //Catturo il Mouse Out sulla mappa
		 $(options.map+' area').bind('mouseout',function(event){
				$('.'+options.cl).hide();
				var dfImg = $(options.defaultImage);
				if ($(dfImg).length>0) {
					$(options.defaultImage).show();
				} else {
					obj.show();
				}	
			});
	 });  
 };  
})(jQuery);
