  /* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 ~~~~~~~~~~~~~~ DESENVOLVEDOR - EDWIN B. PANCOTI (http://www.webillusion.com.br) ~~~~~~~~~~~~~~
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
$(function(){
	/* POP-UP */
	$("#popup").fadeIn("fast");
	$("#fechar").click(function(){ $("#popup").fadeOut("fast"); });
	
	/* ASSINATURA */
	$("#webillusion").live('mouseover', function(){
		$(this).stop().animate({width: '79'});
	}).live('mouseout', function(){
		$(this).stop().animate({width: '15'});
	});
});

