jQuery(document).ready(function(){
	for(var i=1;i<=3;i++) {
		$('a.frontpichover'+i).hover(
			function(){
				var trg = $(this).attr('class');
				$('div.'+trg).stop(true,true);
				$('div.'+trg).fadeIn(300);
			},
			function(){
				var trg = $(this).attr('class');
				$('div.'+trg).stop(true,true);
				$('div.'+trg).fadeOut(300);
			}
		);
	}
	preload(['/templates/blackform/images/frontpichover.jpg'],0);
	$('.frontpage_picture_1 a').tooltip({ 
		track: true, 
		delay: 0, 
		showURL: false, 
		showBody: " - ", 
		fade: 1 
	});
});
