/* -------------------------------------------------------------------

	Kunstmaan - LIJN
	Toerisme Vlaanderen

	This JavaScript file collects all general functions used
	throughout the site, as well as some smaller specific
	functions.

------------------------------------------------------------------- */

$(document).ready(function(){
// display subnav @ share
	$("ul.nav li").hover(function() {
		$(this).addClass("hover");
	}, function() {
		$(this).removeClass("hover");
	});
// youtube movie
	$('.youtube').flash(
		{ width: 586, height: 361 },
		{ version: 8 },
		function(htmlOptions) {
			$this = $(this);
			htmlOptions.src = $this.attr('href');
			$this.before($.fn.flash.transform(htmlOptions));
		}
	);
// open and close subnav share
	$("li > a.share").click(function(event){
		event.preventDefault();
		$(this).parent().children("ul.subnav").css("display","block");
		});
	$("li > ul.subnav > li > a.close").click(function(event){
		event.preventDefault();
		$(this).parent().parent().parent().children("ul.subnav").css("display","none");
		});
});