(function($){  
	$.fn.listomatic = function(options) {
		var defaults = {
			
		};
		
  	// Our plugin implementation code goes here.
		var opts = $.extend(defaults,options);
	
		return this.each(function(){
	
			var maindiv_ul = $(this).children("div").children("ul");
			//alert(maindiv_ul.html());
			maindiv_ul.children("li").each(function(){
//alert($(this).children("span:eq(1)").children("a").html())
				$(this).children("span:eq(1)").children("a").children("img").hide();
				
			});
			maindiv_ul.children("li").each(function(){
				$(this).mouseover(function(){
				//alert($(this).children("img").attr('src'));
				//	$('.whats_new_image').html("<img src=\""+$(this).children("img").attr('src')+"\">");
					$('.whats_new_image').html($(this).children("span:eq(1)").html());
										$('.whats_new_image').children("a").show();
					$('.whats_new_image').children("a").children("img").show();

				});
			});
			
		});
	
	

	};
})(jQuery);