$(document).ready(function() {

	$('#teaser a').click(function() {
		return false;
	});

	$('#teaser a.magnify').tooltip({ 
		delay: 500, 
		showURL: false,
		bodyHandler: function() {
			sHref = $(this).attr('href');
			sTitle = $(this).attr('rel');
			sContent = '<h3>'+sTitle+'</h3><img src="'+sHref+'" alt="" />';
			return sContent; 
		} 
	});

	$('#teaser a img').each(function() {
		$(this).attr('title', '');
	});

	$('.contactForm input, .contactForm textarea').focus(function()
	{
		$(this).addClass('current');
	}).blur(function()
	{
		$(this).removeClass('current');
	});

});
