//Creates mouseover events for wildflower blog pages

$(document).ready(function(){
	var str=null;
	var str2=null;	
	
	$("img.icon").each(function(i){
		$(this).attr('id','I'+i);
		$("#I"+i).parents(".top5").hover(
			function(){
				$("#I"+i).parents(".top5").attr('style','background-color:#EEEEEE');
			},
			function(){
				$("#I"+i).parents(".top5").attr('style','background-color:#FFFFFF');
			});
	});
});
   