$(document).ready(function()
{
	$("#networks a img").css('opacity', '0.5');
	
	$("#networks a").hover(function()
	{
		$("img", this).stop();
		$("img", this).animate({opacity: 1}, 200);
		var network = $(this).attr('title');
		$('#current-network').html('&raquo; ' + network);
	},
	function()
	{
		$('#current-network').html('');
		$("img", this).stop();
		$("img", this).animate({opacity: 0.5}, 300);
	});
	
	if(typeof sIFR == "function")
	{
	    sIFR.bHideBrowserText = false;
	    sIFR.bFixFragIdBug = false; // not recommended!
	    sIFR.setup();
	}
});
