/*initial settings*/
$(document).ready(function(){
						   		   
	/*$(".list_home ul#list_home_items li a").hover(function(){
		$(this).animate({color:"#FFFFFF"},100).animate({backgroundColor:"#E73179"},250).animate({opacity:1},100);
		//$(this).animate({color:"#FFF"},200);
	},function(){
		$(this).animate({color:"#333333"},30).animate({backgroundColor:"#EEEEEE"},30).animate({opacity:1},100);
		//$("#list_home_items li a h1").animate({color:"#333"},100);
	});*/
	
	$(".list_home ul#list_home_items li a").hover(function(){
		$(this).stop().animate({color:"#FFFFFF"},100).animate({backgroundColor:"#1F1F1F"},150).animate({opacity:1},100).animate({backgroundPosition:"(0 0)"},{duration:200});
		//$(this).animate({color:"#FFF"},200);
	},function(){
		$(this).stop().animate({backgroundPosition:"(-425px 0)"},{duration:200}).animate({color:"#333333"},30).animate({backgroundColor:"#EEEEEE"},30).animate({opacity:1},100);
		//$("#list_home_items li a h1").animate({color:"#333"},100);
	});
	
	$('#theavatar').ifixpng(); 
});

