$(document).ready(function(){
	
	var myActions = $("img.action");
	myActions.mouseover(function(){
	var indexIn = myActions.index(this);
	myActions.eq(indexIn).highlightFade({speed:250,start:'#CCCCCC',end:'#4A5860',attr:'borderColor'});
	//alert(indexIn);
}).mouseout(function(){
	var indexOut = myActions.index(this);
	myActions.eq(indexOut).highlightFade({speed:250,start:'#4A5860',end:'#CCCCCC',attr:'borderColor'});
});
	
});

