//Defines properties of slideshow

$(document).ready(function()
{
	//This contains details for the slideshow
	$('.slideshow').cycle({ 
		fx:     'fade', 
		speed:   3000, //Time of transition effect
		timeout: 4000,  //Time of transitions
		next:   '.slideshow', 
		pause:   1 
	})
	
	//This is for the drop down menu
	$('#jsddm > li').bind('mouseover', jsddm_open)
	$('#jsddm > li').bind('mouseout',  jsddm_timer);
});
