$base = "http://www.schmidi.hu/fktemp/advertprevproxy.php?a=";

$(document).ready(function() {
	var re = new RegExp('www.hasznaltauto.hu');
	$('a').each(function() {
		if (re.test($(this).attr('href'))) {				
			$(this).after("<div class=\"tooltip\"><img src=\""+$base+$(this).attr('href')+"\"></div>");			
			$(this).tooltip({ 
				offset: [0, 0],
				effect: 'slide'
			}).dynamic( {      
				bottom: {          
					direction: 'down',       
					bounce: true 
				}						
			});			
		}	
	});
});
	
