$(document).ready(function(){
	$("#socialIcons a img").hover(
		//	Hover starts
		function(){
			$(this).attr('src','/images/'+$(this).attr('class')+'Hover.png');
		},
		//	Hover Ends
		function(){
			$(this).attr('src','/images/'+$(this).attr('class')+'.png');
		}
	);
});
