// Cufon


Cufon.replace('h1, h2, h3', {  textShadow: '1px 1px 1px #ffffff', fontFamily: 'Ubuntu' });


   
   // Home page selected fix
	var i = $('#top .panel .content .tabs ul').find('.current').text();
	if(i==""){ $('#top .panel .content .tabs ul').find('.home').css('background', 'url(../img/top/button-sprites/home.gif)'); }
	

// Scroll

$(document).ready(function(){
	$
	
	
	$("#top > .panel > .content > .tabs > ul > li").hover(function(){
		$(this).find('> a').animate({opacity: 0},300);
		$(this).find('> ul').fadeIn();
		
	}, function(){
		$(this).find('> a').animate({opacity: 1},300);
		$(this).find('> ul').fadeOut();
	});
	
	$('.nivoSlider').nivoSlider();
	
	
	$("#sponsor_rotator").cycle();
	
	 $("#support-us input").hover(function(){
    $(this).fadeTo('fast',0.1)    
      },function(){
      
      $(this).fadeTo('fast',1) 
      }
      
      
      )
	
});

