//JS-Detection
document.documentElement.removeAttribute("id");


//jQuery code geoes here
$(document).ready(function() {


// Slider
$('#loopedSlider').cycle({ 
    delay:  3000, 
    speed:  2000
}); 


// Active menuitem
	function markActiveLink() {
   		$(".mainmenu a").filter(function() {
			var currentURL = window.location.toString().split("/");
			return $(this).attr("href") == currentURL[currentURL.length-1];
		}).addClass("active");
	}
	markActiveLink();


// Dropdown menu
	$(".mainmenu > li").hover(function() {
		$(this).addClass('hover').find("ul").css({opacity:0, display:'block'}).fadeTo(200, 1);
			}, function() {
				$(this).removeClass('hover').find("ul").fadeTo(200, 0).css('display','none');
	});

// Video
$("#showvideo").fancybox();


});
