$(document).ready(
		function(){
			cycleImages('fade', 0);
			$('.playarrow').hover(function() {
				$(this).attr("src","/_templates/main/image/play_arrow_over.png");
			}, function() {
				$(this).attr("src","/_templates/main/image/play_arrow_off.png");
			});
		}
	)
	
	

	
function cycleImages(effect, start){
	$('#mainimage').cycle({ 
	    fx:    effect, 
	    timeout: 5000,
	    continuous: 0,
	    speed: 1000,
	    type: 'sequence',
	    startingSlide: parseInt(start)
	})
};