var myWidth = 0, myHeight = 0;

function ovShow(cnt) {
	$('#ov').show();
	$('#n_overlay').height(1);
	
	switch(cnt) {
		case 'sushi':
			w = 628;
			h = 556;
			$('#ovcnt').html('<div class="menu_sushi"><!--//<img src="gfx/kyoto_menu_tresc.gif"/>//--><br /><br /><br /><br />W krótce otwarcie lokalu.</div>');
		break;
		case '7pub':
			w = 690;
			h = 416;
			$('#ovcnt').html('<img src="gfx/wiz_7pub.jpg"/>');
		break;
		case 'zywiec':
			w = 690;
			h = 450;
			$('#ovcnt').html('<img src="gfx/wiz_pub_zywiecki.jpg"/><div class="zfilm zfilm_zywiec"><a href="#" onclick="ovShow(\'film_zywiec\');">Zobacz film o Pub\'ie</a></div>');
		break;
		case 'zremb':
			w = 690;
			h = 450;
			$('#ovcnt').html('<img src="gfx/wiz_przystan_zremb.jpg"/><div class="zfilm zfilm_zremb"><a href="#" onclick="ovShow(\'film_zremb\');">Zobacz film o Restauracji</a></div>');
		break;
		case 'film':
			w = 690;
			h = 416;
			$('#ovcnt').html('<object width="640" height="360"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=7641180&amp;server=vimeo.com&amp;show_title=0&amp;show_byline=0&amp;show_portrait=0&amp;color=ff9933&amp;fullscreen=1" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=7641180&amp;server=vimeo.com&amp;show_title=0&amp;show_byline=0&amp;show_portrait=0&amp;color=ff9933&amp;fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="640" height="360"></embed></object>');
		break;
		case 'film_zywiec':
			w = 690;
			h = 450;
			$('#ovcnt').html('<object width="640" height="360"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=7642447&amp;server=vimeo.com&amp;show_title=0&amp;show_byline=0&amp;show_portrait=0&amp;color=ff9933&amp;fullscreen=1" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=7642447&amp;server=vimeo.com&amp;show_title=0&amp;show_byline=0&amp;show_portrait=0&amp;color=ff9933&amp;fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="640" height="360"></embed></object><div class="zfilm zfilm_zywiec"><a href="#" onclick="ovShow(\'zywiec\');">Powrót do wizytówki</a></div>');
		break;
		case 'film_zremb':
			w = 690;
			h = 450;
			$('#ovcnt').html('<object width="640" height="360"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=7642044&amp;server=vimeo.com&amp;show_title=0&amp;show_byline=0&amp;show_portrait=0&amp;color=ff9933&amp;fullscreen=1" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=7642044&amp;server=vimeo.com&amp;show_title=0&amp;show_byline=0&amp;show_portrait=0&amp;color=ff9933&amp;fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="640" height="360"></embed></object><div class="zfilm zfilm_zremb"><a href="#" onclick="ovShow(\'zremb\');">Powrót do wizytówki</a></div>');
		break;
		case 'film_blackclub':
			w = 690;
			h = 416;
			$('#ovcnt').html('<object width="640" height="360"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=7641827&amp;server=vimeo.com&amp;show_title=0&amp;show_byline=0&amp;show_portrait=0&amp;color=ff9933&amp;fullscreen=1" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=7641827&amp;server=vimeo.com&amp;show_title=0&amp;show_byline=0&amp;show_portrait=0&amp;color=ff9933&amp;fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="640" height="360"></embed></object>');
		break;
	}
	$('#n_overlay-content').css({'width':''+w+'px','height':''+h+'px'});
	
	var mTop = -Math.round($('#n_overlay-content').height()/2);
	var mLeft = -Math.round($('#n_overlay-content').width()/2);
	
	var myWidth = 0, myHeight = 0;
	  if( typeof( window.innerWidth ) == 'number' ) {
		//Non-IE
		myWidth = window.innerWidth;
		myHeight = window.innerHeight;
	  } else if( document.documentElement && ( document.documentElement.clientWidth || document.documentElement.clientHeight ) ) {
		//IE 6+ in 'standards compliant mode'
		myWidth = document.documentElement.clientWidth;
		myHeight = document.documentElement.clientHeight;
	  } else if( document.body && ( document.body.clientWidth || document.body.clientHeight ) ) {
		//IE 4 compatible
		myWidth = document.body.clientWidth;
		myHeight = document.body.clientHeight;
	  }
  
	if( myHeight>$('#n_overlay-content').height() ) {
		$('#n_overlay-content').css({'top':'50%','margin':''+mTop+'px 0 0 '+mLeft+'px'});
	} else {
		$('#n_overlay-content').css({'top':'0','margin':'0px 0 0 '+mLeft+'px'});
	}
	
	$('#n_overlay').height($(document).height());
}



