var RecaptchaOptions = {
		theme : 'white'
};


$(document).ready(function() {
	
	$('#main-content img').each(function() {
        var $maxWidth = $('#main-content').innerWidth();
		$(this).removeAttr('height');
		if(parseInt($(this).attr('width')) > $maxWidth)
			$(this).attr('width', '537px');
	});
	
	$('#_music').attr('href', 'Javascript:popup("http://player.whitesandblues.ch", 430, 430)');

//	 Fullscreen Feature
	$('#content-area img.img_fullscreen').each(function(i) {
		$(this).wrap('<a href="' + $(this).attr('src') + '" target="_blank" class="lBox" />');
	});
	//$('#content-area .lBox').lightBox();
});

function popup(datei, x, y) {
	window.open(datei, '', 'width='+x+', height='+y+', scrollbars=no, menubar=no, toolbar=no, locationbar=no, directories=no, statusbar=no, scrollbars=yes, resizable=yes');
}
