/**
 * 
 */

	
$(document).ready(function(){	
	$('#popup').click(function() {
		$("#popup").animate({
			top: '-=1000'
		},1000);
	});
	 $('#splash').cycle({
		 fx:      'fade' 
		});
	$("ul.navigation li").hover(
		function() {
			element = $('ul', this);
			element.slideDown(300);
			$('ul',element).css('display','none');
		},
		function() { 
			$('ul', this).fadeOut(100);
		}
	);
	var meexonthebeachDate = new Date(2011,06,30);
	$('#countback').countdown({until: meexonthebeachDate, compact: true, 
	    description: ''});
	
	 $('#video_footer a').click(function() {
	        var video = $(this).attr('class');
	        $('#video div#youtube').hide();
	        $('#video div.' + video).show();
	    });
});

$(function() {
    $('table#gallery a').lightBox();
});

function showMap() {
	$(document).ready(function() {
		$("#terkep").slideToggle(500);
	});
}



