function marcoClicks(){
	$('a.marco').each(function(){		
		//$(this).children(':first').css('float', 'left').css('display', 'inline').clone().insertAfter($(this)).attr('src', $(this).css('background-image').substring(4, $(this).css('background-image').length-1)).css('margin-top', '-'+$(this).css('height'));
		$(this).css('float', 'left').css('display', 'inline').clone().insertAfter($(this)).css('margin-top', '-'+$(this).css('height')).html('').click(function(){$(this).prev().click(); return false;});
		if($(this).hasClass('noShadow'))
			$(this).click(function(){window.open($(this).attr('href'), '_self')});
	});
};