$(document).ready(
	function(){
		$("#suitenav li.dropdown").mouseover(
			function (){
				$("span.arrow").addClass("arrow_on");
			}
		);
		$("#suitenav li.dropdown").mouseout(
			function (){
				$("span.arrow").removeClass("arrow_on");
			}
		);
	}
);

$(document).ready(
	function(){
		$('#slideshow_header').cycle({ 
			fx:    'fade', 
			speed:  1000 
		});
	}
);

$(document).ready(
	function(){
		$('#slideshow_header_ad').cycle({ 
			fx:    'fade', 
			speed:  4475 
		});
	}
);

$(document).ready(
	function(){
		$('#slideshow_side').cycle({ 
			fx:    'fade', 
			speed:  500 
		});
	}
);

$(document).ready(
	function(){
		$('#slideshow_community').cycle({ 
			fx:    'fade,scrollUp,shuffle', 
			speed:  1000 ,
			random:		   1,	  // true for random, false for sequence (not applicable to shuffle fx)
			randomizeEffects: 1,  // valid when multiple effects are used; true to make the effect sequence random
		});
	}
);



