$(document).ready(function() {

	// teaser hover & click
	$('#HomeTeaser div.TeaserItem').css('cursor', 'pointer').hover(function() {
		$(this).addClass('Hover');
	}, function() {
		$(this).removeClass('Hover');
	}).click(function() {
		window.location.href = $(this).find('a:first').attr('href');
		return false;
	});

});
