jQuery(document).ready(function() {
	
	//superfish menu
	if ($("nav .sf-menu").length) {
		jQuery('nav .sf-menu').superfish({			
		animation:   {opacity:'show',height:'show'},  // fade-in and slide-down animation             
		autoArrows:  false,                           // disable generation of arrow mark-up 
		dropShadows: false                            // disable drop shadows      
		});
	}
	
	$("form").validationEngine();
	
	//prettyPhoto
	if ($("a[rel^='prettyPhoto'], a[rel^='lightbox']").length) {
		jQuery("a[rel^='prettyPhoto'], a[rel^='lightbox']").prettyPhoto({
		"theme": 'light_square' 																
		});
	}
		
	//jCycle slider
	if ($('.slideshow').length) {
		jQuery('.slideshow').after('<div id="nav">')
		jQuery('.slideshow').cycle({
			fx: 'fade',
			timeout: 3000,
			pager: '#nav',
			speed: 2000,
			pagerEvent: 'click',
			pauseOnPagerHover: true,
			cleartypeNoBg: true,
			pause: 1 });
		jQuery('.slideshow').css("display", "block");
		jQuery('#nav').css("display", "block");
	}
			
});
