/*  jQUERY CUSTOM FUNCTION 
------------------------------------------------------------------------------------------------------------------------------------------- */
jQuery(document).ready(function($) {
	// Suferfish Menu
	$('ul#menu-topmenu').superfish({
		delay:       400,                            // one second delay on mouseout
		animation:   { height:'show' },              // fade-in and slide-down animation
		speed:       'fast',                         // faster animation speed
		autoArrows:  false,                           // disable generation of arrow mark-up
		disableHI:   true,
		dropShadows: false                           // disable drop shadows
	});
	
	// Tabs
	$("ul.tabs").tabs("div.panes > .tabs-panes", {effect: 'fade', current: 'active', speed: 'slow', fadeInSpeed: 'slow' });
	//effect: 'default' 'fade' 'ajax' 'slide' 'horizontal' !!!
	
	// Scroll
	$(".scrollable").scrollable({circular: false, speed: 800});
	$(".pagination").jcarousel({
		scroll:9
		});
	
	// External Links Open in New Windows
	$("a[rel='external']").bind("click.external", function(){
		window.open(this.href);
		return false;
	});
	
	// Slides
	$('#promo').slides({
		preload: true,
		preloadImage: 'wp-content/themes/scsignature/images/loading.gif',
		container:'slideshow',
		effect: 'fade',
		crossfade: true,
		fadeSpeed: 600,
		hoverPause:false,
		play:3500,
		pause:1000,
		generateNextPrev: false,
		generatePagination: false
	});
	$('#gallery').slides({
		preload: true,
		preloadImage: 'wp-content/themes/scsignature/images/loading.gif',
		container:'gallery_container',
		effect: 'fade',
		crossfade: false,
		fadeSpeed: 300,
		hoverPause:false,
		// play:3500,
		// pause:1000,
		generateNextPrev: false,
		generatePagination: false
	});
	// Gallery Name 
	$(".info").hide();
	$(".img-thumbs").hover(function () {
		$(this).find(".info").fadeIn().hide();
	 }, function(){
		 $(this).find(".info").hide().fadeOut("slow");
	});
	
	// Lightbox with PrettyPhoto
	$("a[rel^='lightbox']").prettyPhoto({
		animationSpeed:'slow',
		theme:'dark_square', 
		overlay_gallery:false, 
		allow_resize:true, 
		opacity:0.70, 
		show_title:true
	});
});

