/*
* requires jquery.tools.js 1.2.5 with scrollable and jquery 1.4.2
* image fade-in
*/
$(function(){
	function general_fade() {
	$('.fade').each(function(){
	var img = $(this);
		img.data('org', img.attr('src')).removeAttr('alt').removeAttr('src');
    	img.load(function(){
     	img.fadeIn(550)
      }).hide().attr('src', img.data('org'));
	})
	}
	general_fade();

})
