// © Copyright Kenny Grant 2007 
// Released under the BSD licence

	
var Cashou = {
	version				: '1.0',
	
	//
	//
	// 
	init : function () {
		

		
		
		anchor_list = $A(document.getElementsByTagName('a'));
		
		index = 1;
		anchor_list.each(function (link) {
		
			 var rel = String(link.getAttribute('rel'));
		
			
			 if (rel == "sliding_gallery")
				{
				// 
				link.getElementsByClassName('fragment_image');	
				}
		
		});





	}
	
	

}


Event.observe(window,'load',Cashou.init,false);




