$j = jQuery.noConflict(); 
function setLayout(){
	var tmpHeight = $j('#wrap').height() - $j('#wrap_header').height() - $j('#navigation').height() - $j('#rootline').height() - $j('#title').height() - $j('#content').height();
	$j('#footer').height(Math.round(tmpHeight-80));
}
$j(document).ready(function(){

	//jQuery(document).pngFix();  
	setLayout();
	window.onresize = function (evt) {
      setLayout();
   	}
	
	$j('#playerButton').click(function(){
		fenster = window.open("fileadmin/tmpl/player.html", "player", "width=690,height=380,resizable=no,status=no,scrollbars=no");
 		fenster.focus();
	})

	
});