/*   events splash page   */

$(document).ready(function() {

	$('#teaser01').height($('#teaser01 .teaser-content').height() +120 );
	$('#teaser02').height($('#teaser02 .teaser-content').height() +120 );
	$('#teaser03').height($('#teaser03 .teaser-content').height() +120 );
	$('#teaser04').height($('#teaser04 .teaser-content').height() +120 );
	
	equalHeight($(".teaser"));
	equalHeight($(".equalcolumn"));
	
	
	if($.browser.msie && $.browser.version=="6.0") {
		$('.dropdown').hover(mouseOverEvent,mouseOutEvent);
	}
	
	$('.teaser').css({'cursor':'pointer'});
	$('.teaser').click(function() {
		window.location = $(this).find("a").attr("href");
	});

	
	
});

function mouseOverEvent() {
	$('.dropdown li ul').css({'left':'auto'});
}

function mouseOutEvent() {
	$('.dropdown li ul').css({'left':'-999em'});
}

