$(document).ready(function() {
	  $("#menu-home").click(function(event){
          $('#maincontent-wrapper').load('index.php #maincontent');
      });
	  $("#menu-dates").click(function(event){
          $('#maincontent-wrapper').load('dates.php #maincontent');
      });
	  $("#menu-reviews").click(function(event){
          $('#maincontent-wrapper').load('reviews.php #maincontent');
      });
	  $("#menu-video").click(function(event){
	  $.getScript('js/jquery.mb.mediaEmbedder.js', function() {
		//alert('Load was performed.');
		$('#maincontent-wrapper').load('video.php #maincontent', function() {
					$('#maincontent').ready(function(){
		      		$.mb_audioEmbedder.playerPath="media/player.swf";
		      		$.mb_videoEmbedder.defaults.width=500;
		      		$('#video').mb_embedMovies();
					});
				});
		});
      });
	  $("#menu-contact").click(function(event){
          $('#maincontent-wrapper').load('contact.php #maincontent');
      });
	  $("#menu-photo").click(function(event){
	  $.getScript('js/jquery.lightbox-0.5.min.js', function() {
	    $('#maincontent-wrapper').load('photo.php #maincontent', function() {
					$('#maincontent').ready(function(){
					$('#gallery a').lightBox();
					});
				});
		});
      });
});

