jQuery(document).ready(function(){
	vc_initNavigation();
	vc_initSlideshow();
});


function vc_initNavigation() {	
	jQuery('#topnavigation ul.vc_firstlevel').hover(function(){
		jQuery(this).addClass("vc_jq_hover");
		jQuery(this).find("li a").eq(0).addClass("vc_jq_hover");
	},function(){
		jQuery(this).removeClass("vc_jq_hover");
		jQuery(this).find("li a").eq(0).removeClass("vc_jq_hover");
	});
	
}

/* ------------------------------------------------------------------------------------------------------------
	slideshow
------------------------------------------------------------------------------------------------------------ */

function vc_initSlideshow(){

	if(typeof(vcSlideshowImages) != "undefined") {
		jQuery("div.vc_slideshow").wrapInner('<ul><li></li></ul>');
		
		var html;
		for (var i = 0; i < vcSlideshowImages.length; i++) {
			html = '<li><img alt="slideshow" src="' + jQuery("base").attr("href") + vcSlideshowImages[i] + '" /></li>';
			jQuery("div.vc_slideshow ul").append(html);
		}
		jQuery("div.vc_slideshow ul").innerfade({
			animationtype: 'fade',
			speed: 2500,
			timeout: 5000,
			type: 'sequence',
			containerheight: '21.5em'
		});
	}
}
