$(document).ready( function(){

/* ============ FADING INDEX PAGE IMAGES ================== */
	$('#s1').cycle({ 
		fx:    'fade', 
		speed:  1000 
	});
	$('#s2').cycle({ 
		fx:    'fade', 
		speed:  2500 
	});
	$('#s3').cycle({ 
		fx:    'fade', 
		speed:  1500 
	});
	$('#s4').cycle({ 
		fx:    'fade', 
		speed:  2000
	});
	
	
	$('#s5').cycle({ 
		fx:    'fade', 
		speed:  1000 
	});
	$('#s6').cycle({ 
		fx:    'fade', 
		speed:  2500 
	});
	$('#s7').cycle({ 
		fx:    'fade', 
		speed:  1500 
	});
	$('#s8').cycle({ 
		fx:    'fade', 
		speed:  2000
	});
	
	
	$('#s9').cycle({ 
		fx:    'fade', 
		speed:  1000 
	});
	$('#s10').cycle({ 
		fx:    'fade', 
		speed:  2500 
	});
	$('#s11').cycle({ 
		fx:    'fade', 
		speed:  1500 
	});
	$('#s12').cycle({ 
		fx:    'fade', 
		speed:  2000
	});
/* ===================================================== */
/* ============ GALLERY ============= */

	$("#gallery a").hover(
	  function () {
		$(this).append($("<span></span>"));
	  }, 
	  function () {
		$(this).find("span:last").remove();
	  }
	);
	
	$("#gallery1 a").hover(
	  function () {
		$(this).append($("<span></span>"));
	  }, 
	  function () {
		$(this).find("span:last").remove();
	  }
	);
/* ===================================================== */
	


});

