
$(document).ready(function(){
	
	$("#vidpic").mouseover(function(){
		$("#vidpic").attr("src", "tl_files/images/7logo_hover.jpg");
	});
	
	$("#vidpic").mouseout(function(){
		$("#vidpic").attr("src", "tl_files/images/7logo.jpg");
	});
	
});


window.onload = function()
{
	
	/**
	 * Alle drei Spalten auf die selbe Länge bringen
	 */
	var height = 0;
	
	if($("#left").height() > height)
		height = $("#left").height();
		
	if($("#main").height() > height)
		height = $("#main").height();
		
	if($("#right").height() > height)
		height = $("#right").height();
		
	$("#left").height(height);
	$("#main").height(height);
	$("#right").height(height);

	$('a[rel*=lightbox]').lightBox();
}
