
/* jQuery Settings */

/*	if(window.jQuery){jQuery(function(){
		(function(){ jQuery('a.snavone').bind('mouseover', function(event, ui){var target = jQuery('a.snavone'); target.animate({'backgroundColor':'#5a9d00'},750,'jswing')});})();
		(function(){ jQuery('a.snavone').bind('mouseout', function(event, ui){var target = jQuery('a.snavone'); target.animate({'backgroundColor':'#fff'},750,'jswing')});})();
		(function(){ jQuery('span.hntwo').bind('mouseover', function(event, ui){var target = jQuery('span.hntwo'); target.animate({'backgroundColor':'#f60'},500,'linear')});})();
		(function(){ jQuery('span.hntwo').bind('mouseout', function(event, ui){var target = jQuery('span.hntwo'); target.animate({'backgroundColor':'#f7efb0'},500,'linear')});})();
		
	})};*/
	

$(document).ready(function(){
	var fDuration = 400; 
      	$('.firstli a').hover(function(){ $(this).children('span').animate({ paddingLeft: '15px'}, fDuration); $(this).animate({ backgroundColor:'#262626' }, 400);}, 
						    function(){ $(this).children('span').animate({ paddingLeft: '10px'}, fDuration); $(this).animate({ backgroundColor:'#0d0d0d' }, 400);});

      	$('.secli a').hover(function(){ $(this).children('span').animate({ paddingLeft: '35px'}, fDuration); $(this).animate({ backgroundColor:'#262626' }, 400);}, 
						    function(){ $(this).children('span').animate({ paddingLeft: '30px'}, fDuration); $(this).animate({ backgroundColor:'#0d0d0d' }, 400);});

      	$('.thirdli a').hover(function(){ $(this).children('span').animate({ paddingLeft: '55px'}, fDuration); $(this).animate({ backgroundColor:'#262626' }, 400);}, 
						      function(){ $(this).children('span').animate({ paddingLeft: '50px'}, fDuration); $(this).animate({ backgroundColor:'#0d0d0d' }, 400);});
		
		$('.fourthli a').hover(function(){ $(this).children('span').animate({ paddingLeft: '75px'}, fDuration); $(this).animate({ backgroundColor:'#262626' }, 400);}, 
						      function(){ $(this).children('span').animate({ paddingLeft: '70px'}, fDuration); $(this).animate({ backgroundColor:'#0d0d0d' }, 400);});
		

});
		