$(document).ready(function(){

$('.rollOver').hover(function(){
	$(this).css("opacity", ".5");
	},
	function(){
	$(this).css("opacity", "1");
});


$('.face').hover(function(){
	
	$(this).attr("src", "/wp-content/themes/company/images/facebook-o.jpg");
	}, function(){
	$(this).attr("src", "/wp-content/themes/company/images/facebook.jpg");
});

$('.twitt').hover(function(){
	
	$(this).attr("src", "/wp-content/themes/company/images/twitter-o.jpg");
	}, function(){
	$(this).attr("src", "/wp-content/themes/company/images/twitter.jpg");
});

$('.link').hover(function(){
	
	$(this).attr("src", "/wp-content/themes/company/images/linkedin-o.jpg");
	}, function(){
	$(this).attr("src", "/wp-content/themes/company/images/linkedin.jpg");
});

$('.email').hover(function(){
	
	$(this).attr("src", "/wp-content/themes/company/images/email-o.jpg");
	}, function(){
	$(this).attr("src", "/wp-content/themes/company/images/email.jpg");
});

});




