/*  jQUERY CUSTOM FUNCTION 
------------------------------------------------------------------------------------------------------------------------------------------- */
jQuery(document).ready(function($) {
	// Suferfish Menu
	$('ul#menu-headermenu').superfish({
		delay:       350,                            // 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/scnational/images/loading.gif',
		container:'slideshow',
		effect: 'fade',
		crossfade: true,
		fadeSpeed: 600,
		hoverPause:false,
		play:3500,
		pause:1000,
		generateNextPrev: false,
		generatePagination: false
	});
	
	// Lightbox with PrettyPhoto
	$("a[rel^='lightbox']").prettyPhoto({
		animationSpeed:'slow',
		theme:'dark_square', 
		overlay_gallery:false, 
		allow_resize:false, 
		opacity:0.70, 
		show_title:false
	});
	
});

