$(document).ready( function() 
{
	$('.hover').live('mouseover', function() { 
		var img = $(this).attr("src");
		var hover = img.replace(".png","_over.png");
		$(this).attr({"src":hover});
	});
	
	$('.hover').live('mouseout', function() { 
		var img = $(this).attr("src");
		var hover = img.replace("_over.png",".png");
		$(this).attr({"src":hover});
	});	
});	

function inserir_newflash(file,w,h,div)
{

	var flashvars = {};
	var params = {			
		wmode: "transparent"
	};
	var attributes = {};

		$.swfobject.embedSWF(file, div, w, h, "8.0.0", "expressInstall.swf", flashvars, params, attributes);
}

