$(document).ready(function(){
	
	$('div.clickmap a').click(function() {
		//console.log(this.id);
		try {
			setRightTeaserContents(this.id);
		} catch (e) {
			setRightTeaserContents('home');
		}
    });


});			

	function setRightTeaserContents(contentType) {
		var TeaserHtml;
		switch (contentType) {
			case 'home':
			ContentURI = 'content.php?page=home&code=1';
			TeaserHtml = '<a href="_dl/gasteig.pdf" target="_blank"><img src="img/home_gasteig.gif" alt="Konzert Gasteig 2008" /></a>'+
						 '<br><br><strong style="color: #002f57; font-size: 12px;">Videos</strong><br><br>'+
						 '<a href="javascript: void(0);" onclick="window.open(\'_swf/amigos.html\',\'videos\',\'width=420,height=330\');"><img src="img/video_amigos.gif"></a><br>'+
						 '<a href="javascript: void(0);" onclick="window.open(\'_swf/fe.html\',\'videos\',\'width=420,height=330\');"><img src="img/video_fe.gif"></a>';
			break;
	
			case 'biografie':
			TeaserHtml = '<a href="http://www.blueplanet-musikkurse.de" target="_blank"><img src="img/visit_blueplanet.gif"></a>';
			break;
	
			case 'presse':
			TeaserHtml = '<a href="_dl/pressetext_d.doc" target="_blank" style="font-size: 10px;">Pressetext downloaden</a><br><br>' +
						 'Bilder zum downloaden<br/>(300dpi):<br/>' +
						 '<a href="_dl/presse_lygia1.pdf"><img src="img/dl_pic1.gif" alt="1"/></a>&nbsp;&nbsp;' +
						 '<a href="_dl/presse_lygia2.pdf"><img src="img/dl_pic2.gif" alt="1"/></a><br>' +
						 '<a href="_dl/presse_lygia4.pdf"><img src="img/dl_pic3.gif" alt="1"/></a>&nbsp;&nbsp;' +
						 '<a href="_dl/presse_lygia3.pdf"><img src="img/dl_pic4.gif" alt="1"/></a>';
			break;
	
			case 'musiker':
			TeaserHtml = '<p class="subMenu"><a href="content.php?page=musiker&code=2" target="content">Paulo Morello</a></p>' + 
						'<p class="subMenu"><a href="content.php?page=musiker&code=3" target="content">Matthias Engelhardt</a></p>' + 
						'<p class="subMenu"><a href="content.php?page=musiker&code=4" target="content">Ciro Trindade</a></p>' + 
						'<p class="subMenu"><a href="content.php?page=musiker&code=5" target="content">Pedro Tagliani</a></p>' + 
						'<p class="subMenu"><a href="content.php?page=musiker&code=6" target="content">Claudio Wilner</a></p>' + 
						'<p class="subMenu"><a href="content.php?page=musiker&code=7" target="content">Walter Bittner</a></p>' + 
						'<p class="subMenu"><a href="content.php?page=musiker&code=8" target="content">Kim Barth</a></p>' + 
						'<p class="subMenu"><a href="content.php?page=musiker&code=9" target="content">Martin Scales</a></p>' +
						'<p class="subMenu"><a href="content.php?page=musiker&code=10" target="content">Márcio Tubino</a></p>';
			break;
			
			case 'galerie':
			TeaserHtml = '<p class="subMenu"><a href="content.php?page=galerie&code=live" target="content">Live</a></p>' + 
						'<p class="subMenu"><a href="content.php?page=galerie&code=video" target="content">Studio</a></p>' + 
						'<p class="subMenu"><a href="content.php?page=galerie&code=fotoshooting" target="content">Fotoshooting</a></p>' + 
						'<p class="subMenu"><a href="content.php?page=galerie&code=sonstiges" target="content">Sonstiges</a></p>';
			break;
			
	
			default:
			TeaserHtml = '';
			break;
		}
		$('#iframe_content').attr('src',ContentURI);
		$('#rightTeaser').html( TeaserHtml );	
		
	}

function show_fullscale_pic(PicName,sWidth,sHeight) {
/*	$('#viewport_disable').fadeIn('fast');
	$('#picPort').show();
	$('#picPort img').attr('src', PicName);
*/

	var nWnd = window.open(PicName,'nWind','width='+(sWidth+15)+', height='+(sHeight+15));

}


function disable_fullscale_pic() {
	$('#viewport_disable').fadeOut('fast');	
	$('#picPort').hide();
}
