// Scripts by www.bernthaler.com, mike bernthaler 2010
//
// Pop-Up-Fenster ---------------------------------------------------
function openPOP(theURL,winName,features) {
  window.open(theURL,winName,features);
}


function popup(theURL,winName,features) {
window.open(theURL,"newwindow","height=300,width=400,alwaysLowered=0,alwaysRaised=0,channelmode=0,dependent=1,directories=0,fullscreen=0,hotkeys=1,location=0,menubar=0,resizable=1,scrollbars=1,status=0,titlebar=0,toolbar=0,z-lock=0,screenX=100,screeny=100,left=100,top=100");
}


// mp3-player mit JQuery --------------------------------------------
$(document).ready(function () {
	$('a.media').each(function (i) {
            var audioPlayer = '<object type="application/x-shockwave-flash" data="addons/audioplayer/player.swf" height="24" width="290">';
            audioPlayer += '<param name="movie" value="addons/audioplayer/player.swf">';
            audioPlayer += '<param name="FlashVars" value="playerID=' + i + '&soundFile=' + $(this).attr('href') + '&titles=' + $(this).html() + '">';
            audioPlayer += '<param name="quality" value="high">';
            audioPlayer += '<param name="menu" value="false">';
            audioPlayer += '<param name="wmode" value="transparent">';
            audioPlayer += '</object>';
            /*audioPlayer += '<br/><a href=\"' + $(this).attr('href') + '\" target=\"_blank\">download mp3</a>';*/
            $(this).after(audioPlayer).remove();
	});
});

// Shadowbox mit JQuery  ---------------------------------------------
//Shadowbox.skin.markup = ...

Shadowbox.init({
	modal: false, // klick outside
	counterType: "skip", //zählertyp
	overlayColor: "#000", //abdunkelfarbe
	overlayOpacity: 0.5
	
});


function ipic(theURL,winName,features)
	{
	window.open(theURL,"newwindow","height=600,width=700,alwaysLowered=0,alwaysRaised=0,channelmode=0,dependent=1,directories=0,fullscreen=0,hotkeys=1,location=0,menubar=0,resizable=1,scrollbars=1,status=0,titlebar=0,toolbar=0,z-lock=0,screenX=100,screeny=100,left=100,top=100");
	}
	
	
