﻿jQuery(document).ready(function() {

	var tasterLink = "";
				
	if (tasterLink != undefined) {
		jQuery(".teaser_rootx > div").hover( function () {
			jQuery(this).toggleClass("teaser_hover");
		}).click( function() {
			var tasterLink = jQuery("a:last", this).attr("href");
			//alert(tasterLink);
			location.href = tasterLink;
		}).css("cursor", "pointer");
	}

});

