/*** @author iboa*/$(document).ready(function(){// init flowplayer as mp3 player	$(".jimage").click(function(){		$.ajax({			url:$(this).attr('href'),			method: "GET",			data: ({ajc : 'true'}),			success: function(html){				$('#cont_col').html(html);		  	}		});		return false;	});/* * $.ajax({ url: "test.html", context: document.body, success: function(){        $(this).addClass("done");      }}); */	$(".content").livequery('click', function(){//		alert($(this).attr('href'));	});	// workaround um trotz xhtml-strict links in neuem Fenster öffenen zu können	$("a.extern").click(function(){		externLink(this.href);		return false;	});	//popUpAufrufe	// Alle PopUps werden seitenweit im Initial-Array (höhe, weite, fenstername) 'popups' verwaltet.	// Im Quelltext wird das PopUp Fenster durch das class-Attribut 'popupOpener' identifiziert.	// Um das gewünschte PopUp zu öffenen muss ein zweites class-Attribut mit dem Objektnamen im Array eingesetzt werden.	// Beispiel: class='popupOpener popHilfe'	$('a.popupOpener').live('click' , function(){		for(var pops in popups){			 if($(this).hasClass(pops)) {			 	var p = eval("popups." + pops);				openPopUp(this.href,p.name,p.width,p.height);				break;			 }		}		return false;	});	$("a.opener").click(function(){		opener.location.href = $(this).attr('href');		return false;	});	});/** * externLink * @param {Object} url, web adresse die aufgerufen werden soll  */function externLink (url) {	var fenster = window.open(url);}/** * openPopUp * @param {string} url, web adresse die aufgerufen werden soll  * @param {string} name, Name des zu öffnenden Fensters  * @param {string} width, Breite des zu öffnenden Fensters  * @param {string} height, Höhe des zu öffnenden Fensters  * Dont use this function directly, return false is managed by jquery. */function openPopUp(url, name, width, height) {	var newwindow=window.open(url,name,'height=' + height + ',width=' + width);	if (window.focus) {		newwindow.focus();	}	return newwindow;}/**  *  Array zum Verwalten aller popups */var popups = {	"popMk":{		"width":782,		"height":552,		"name": 'MK Standard Popup'	}};function callExternalInterface(p_song) {	/* Call a function registered as callPlayBall in the SWF named myMovie. */	getMovieName("mkPlayer").playSong(p_song); }/* This utility function resolves the string movieName to a Flash object reference based on browser type. */function getMovieName(movieName) {	if($.browser.msie){		return window[movieName]	} else {		return document[movieName]	}}