<!-- Show webshop QuickNav -->

$(document).ready(function(){
    $(".WebShopQuickNavButton").click(function () {
        $("#webshop_quicknav").slideToggle("quick");
    });
});

<!-- /Show webshop QuickNav -->


<!-- fade in/out -->

$(document).ready(function(){

	// This animates  the opacity on hover
	$(".fadeinonover").hover(function(){
		$(this).fadeTo("fast", 1.0); 
	},function(){
   		$(this).fadeTo("slow", 0.75);
	});

	// This animates  the opacity on hover
	$(".fadeoutonover").hover(function(){
		$(this).fadeTo("fast", 0.20); 
	},function(){
   		$(this).fadeTo("slow", 0.40);
	});

});

<!-- fade in/out -->

<!-- innerfade -->
	$(document).ready(
		function(){
			$('#innerfade').innerfade({
				animationtype: 'fade',
				speed: 'slow',
				timeout: 4000,
			});
		}
	);
<!-- /innerfade -->

<!-- Fancybox contact form -->
		$(document).ready(function() {
			$(".contact-form-link").fancybox({
				'width'				: 800,
				'height'			: 520,
				'autoScale'			: false,
				'transitionIn'		: 'fade',
				'transitionOut'		: 'fade',
				'type'				: 'iframe',
				'hideOnContentClick'	:'false'
			});
		});
<!-- /Fancybox contact -->

<!-- Fancybox picture group -->
		  $(document).ready(function() {
		
			/* Apply fancybox to multiple items */
			
			$("a.fancybox_group").fancybox({
				'transitionIn'	:	'elastic',
				'transitionOut'	:	'elastic',
				'speedIn'		:	400, 
				'speedOut'		:	200,
				'titlePosition'		:	'inside', 
				'overlayShow'	:	true
			});
		
		});
<!-- /Fancybox picture group -->

<!-- Global qTip2 -->

$('.qtip_tooltip').qtip({
   content: {
      attr: 'alt',
   }
})

<!-- /qTip2 -->

