jQuery(function ($) {

	/*$("#pulse").animate(
				{opacity: 0},
				{duration:600,queue: true,complete:pulse()
				} );	
*/
    $(".pulse").css(
    {opacity: 0});	
				
	function pulse(jq) {
            jq.animate(
		{opacity: 1},
		{duration:1200,queue: true,complete:function()
			{
				$(this).animate(
				{opacity: 0},
				{duration:400,queue: true,complete:pulse(jq)
				} );			
			}
		} );
        }
	//$("#magic").hide();
	//$("#magic").slideDown(1000);
	
	$(".pulse").each( function () {
            
            pulse($(this))
            });
        
});

