// Superfish Scripts init
jQuery(function(){
     // This initializes the Superfish menu.
     jQuery('ul.sf-menu').superfish();
 });


 // prettyPhoto Script Init
$(document).ready(function(){
	$("a[rel^='prettyPhoto']").prettyPhoto({
		animationSpeed: 'normal', /* fast/slow/normal */
		opacity: 0.80, /* Value between 0 and 1 */
		showTitle: false /* true/false */
	});
});

//homepage slider
$(document).ready(function() {
	$('#slidesWrapper').cycle({
		fx: 'fade', // choose your transition type, ex: fade, scrollUp, shuffle, etc...	});});
		pager: '#sliderControls',
		speed: 1000,
		timeout: 6000
	});
});

//show hide divs
$(document).ready(function(){
   $('.show_hide').showHide({			 
		speed: 1000,  // speed you want the toggle to happen	
		easing: '',  // the animation effect you want. Remove this line if you dont want an effect and if you haven't included jQuery UI
		changeText: 0, // if you dont want the button text to change, set this to 0
		showText: 'View',// the button text to show when a div is closed
		hideText: 'Close' // the button text to show when a div is open
					 
	}); 
});
