$(document).ready(function(){
	$.sifr({
				path: '/library/plugins/sIFR2/aller/',
				save: true
			});
	
	$(".sIt").each(function(){ 
			$(this).sifr({ font: 'aller-bold' });
	});
	
	$(".sIt.blue").each(function(){ 
			$(this).sifr({ font: 'aller-bold', color: '#0F5082' });
	});
	
	$(".sIt.reg").each(function(){ 
			$(this).sifr({ font: 'aller' });
	});
	
	$(".sIt.reg.blue").each(function(){ 
			$(this).sifr({ font: 'aller', color: '#0f5082' });
	});
		
/*	$("ul.links li.sifr_links a").each(function(){ 
			$(this).sifr({ font: 'aller' });
	});
*/	
	function changeImgSrc(newUrl, initUrl, classEl, thisIndex){
	
		$(classEl+':eq('+thisIndex+')').attr({ src: newUrl, nurl: initUrl });
	
	}
	
	/*$('.snetwork_logos a img').each(function(){ $(this).stop().fadeTo('slow', 0.2); });
	
	$('.snetwork_logos a img').hover(function(){
		var newUrl = $(this).attr('nurl');
		var initUrl = $(this).attr('src');
		var classEl = '.snetwork_logos a img';
		var thisIndex = $('.snetwork_logos a img').index(this);
		changeImgSrc(newUrl, initUrl, classEl, thisIndex);
		$(this).stop().fadeTo('slow', 1);
	},function(){
		var newUrl = $(this).attr('nurl');
		var initUrl = $(this).attr('src');
		var classEl = '.snetwork_logos a img';
		var thisIndex = $('.snetwork_logos a img').index(this);
		$(this).stop().fadeTo('slow', 0.2);
		changeImgSrc(newUrl, initUrl, classEl, thisIndex);
	});
	*/

});

