jQuery(document).ready(function() {
	
	jQuery('#footer #social-icons .sidepages li a').hover(function() {
		
		$href = jQuery(this).find('img').attr('src');
		jQuery(this).find('img').attr('original', $href);
		$orig = jQuery(this).find('img').attr('original');
		$href = $href.replace('.png', '');
		
		
		jQuery(this).find('img').attr('src', $href + '_hover.png');
	
	},function() {
		
		jQuery(this).find('img').attr('src', $orig);
	});
	
	jQuery('.external').attr('target', '_blank');

});
