$(document).ready(function() {


		$('.flags img').hover(function()
		{
		$(this).attr("src",$(this).attr("src").replace('english','englishrouge'));
		}, function()
		{
		$(this).attr("src",$(this).attr("src").replace('englishrouge','english'));
		});
		
		
		$('#contact img').hover(function()
		{
		$(this).attr("src",$(this).attr("src").replace('gmail','gmailhover'));
		}, function()
		{
		$(this).attr("src",$(this).attr("src").replace('gmailhover','gmail'));
		});
		
		
		$('#contact img').hover(function()
		{
		$(this).attr("src",$(this).attr("src").replace('twitter','twitterhover'));
		}, function()
		{
		$(this).attr("src",$(this).attr("src").replace('twitterhover','twitter'));
		});
		
		
		$('#contact img').hover(function()
		{
		$(this).attr("src",$(this).attr("src").replace('facebook','facebookhover'));
		}, function()
		{
		$(this).attr("src",$(this).attr("src").replace('facebookhover','facebook'));
		});
		
		
		$('#contact img').hover(function()
		{
		$(this).attr("src",$(this).attr("src").replace('myspace','myspacehover'));
		}, function()
		{
		$(this).attr("src",$(this).attr("src").replace('myspacehover','myspace'));
		});
		
		
		$('#contact img').hover(function()
		{
		$(this).attr("src",$(this).attr("src").replace('stumbleupon','stumbleuponhover'));
		}, function()
		{
		$(this).attr("src",$(this).attr("src").replace('stumbleuponhover','stumbleupon'));
		});
		
		
		$('#contact img').hover(function()
		{
		$(this).attr("src",$(this).attr("src").replace('formspring','formspringhover'));
		}, function()
		{
		$(this).attr("src",$(this).attr("src").replace('formspringhover','formspring'));
		});
		
		
		$('#contact img').hover(function()
		{
		$(this).attr("src",$(this).attr("src").replace('digg','digghover'));
		}, function()
		{
		$(this).attr("src",$(this).attr("src").replace('digghover','digg'));
		});
		
		
		$('#contact img').hover(function()
		{
		$(this).attr("src",$(this).attr("src").replace('rss','rsshover'));
		}, function()
		{
		$(this).attr("src",$(this).attr("src").replace('rsshover','rss'));
		});
		
});
