
$(document).ready(init);
function init(){
	$(".mylink").hover(
 		function()
 		{
  			this.src = this.src.replace("_off","_on");
 		},
		function()
 		{
  			this.src = this.src.replace("_on","_off");
 		}
	);
	
	$('#agHolder,#buzzHolder, #bfmHolder, #chaHolder, #mouseHolder').jqFancyTransitions({ 
											width: 610, 
											height: 378,
											effect: 'wave', // wave, zipper, curtain
											strips: 15, // number of strips	
											delay: 5000000, // delay between images in ms
											stripDelay: 50, // delay beetwen strips in ms
											navigation: true, // prev and next navigation buttons
											links: false // show images as links
											 });
}
