var url;
$(document).ready( function()
{ 
	url = $("#url").val(); 	
	
	

	$(".image_links").mouseover (function(){		
		
		$(this).attr('class','image_links active_color');
		//$(this).contents().find('img').attr('src',url+'/images/default/active2.jpg');
		var id = $(this).attr('id');		
		//alert($('#coloring_'+id).val());
		//alert(id);
		$(this).contents().find('img').attr('src',$('#coloring_'+id).val());		
	});
	$(".image_links").mouseout (function(){		
		$(this).attr('class','image_links inactive_color');		
		//$(this).contents().find('img').attr('src',url+'/images/default/inactive2.jpg');
		var id = $(this).attr('id');
		$(this).contents().find('img').attr('src',$('#gray_'+id).val());
	});
	
	var leftValue = $("#loginPicture").val();
	$(".rss img").hover(function(){
		 $(this).stop().animate({left:leftValue}, "fast");
		 //$(this).stop().animate({left:"70"}, "fast");// for the english version
	}, function (){
		$(this).stop().animate({left:"0"}, "medium");
	}); 
	
		
});
