$(function(){
	$("#SlideShow").cycle({ 
	    fx:    	'fade', 
	    speed:  1500,
	    timeout:7000
	 });
	 $("#dPhotoGal").mousemove(function(e){
		var p = ($("span",this).width()-$(this).width()) / 100;
		if(p>0){
			var c = ((e.pageX - $(this).offset().left) / $(this).width())*100;
			$("span",this).stop().animate({"left":"-" + ( p * c) + "px"},"slow","easeOutExpo");
		}
	});
	
	//Menu Code
	$("#sideMenu ul li").hover(function(){ 
		$(">ul", this).show("fast"); 
	}, function(){
		$(">ul", this).hide("fast"); 
	});
});