/*
The script will give you the ‘fade in’ effect for the banner images by default. But you can change to other effects. Open this file:
\themes\YOUR_THEME_NAME\js\slide\simslide_scripts.js

At line 5, you can see fx: ‘fade’ — change fade to shuffle or zoom or turnDown or curtainX.

You can see the demos at Cycle Plugin — it is the source of the jQuery Cycle Plugin, which we are using for the different types of transition effects.*/

$(document).ready(function() {
	$("#slideshow").css("overflow", "visible");
	
	$("ul#slides").cycle({
		fx: 'curtainX',
		pause: 0,
		prev: '#prev',
		next: '#next'
	});
	
	$("#slideshow").hover(function() {
    	$("ul#nav3").fadeIn();
  	},
  		function() {
    	$("ul#nav3").fadeIn();
  	});
	
});
