
$(document).ready(function() {
	var $teasers = $('#LeftBlocksTeaser');
	if ($teasers) {
		$teasers.find('div.EzBlock').click(function(){
			var href = $(this).find('a:first').attr('href');
			window.location = href;
			return false;
		}).css('cursor', 'pointer');
	}
	$('.Download').click(function() {
		var href = $(this).find('a:first').attr('href');
		window.open(href);
		return false;
	}).css('cursor', 'pointer').hover(function() {
		$(this).addClass('Hover');
	}, function() {
		$(this).removeClass('Hover');
	});
});

