/*jQuery.each(jQuery.browser, function(i, val) {
      alert(i + " : " + val);
    });
*/
var wndDelta = 0;

if($.browser.mozilla)
	wndDelta = 55;
else if($.browser.msie)
	wndDelta = 95;
else if($.browser.opera)
	wndDelta = 55;
else if($.browser.safari)
{
	if($.browser.version > 530)
		wndDelta = 115;
	else
		wndDelta = 95;
}
	

function setTblHeight()
{
	h = ($(window).height());
	$('td.content').height(h-wndDelta);
}

$(document).ready(function() {
	 $('.kanal-content-box').each(function () {
		var box = $(this);
		
		// hover effects for box images
		$(this).mouseover(function () {
			box.find(".kanal-img").hide();
			box.find(".kanal-img-gross").show();
		});
		$(this).mouseout(function () {
			box.find(".kanal-img").show();
			box.find(".kanal-img-gross").hide();
		});
		// click the actual link of one clicks the box
		$(this).click(function () {
			document.location = box.find("a").eq(0).attr('href');
		});
	});
});
