$(document).ready(function(){

	$("a#bigbutton1").hover(function(){
		$("img#animatedicon1").attr("src","img/icon_concept2.gif");
	},function(){
		$("img#animatedicon1").attr("src","img/icon_concept1.gif");
	});
	
	$("a#bigbutton2").hover(function(){
		$("img#animatedicon2").attr("src","img/icon_cad2.gif");
	},function(){
		$("img#animatedicon2").attr("src","img/icon_cad1.gif");
	});
	
	$("a#bigbutton3").hover(function(){
		$("img#animatedicon3").attr("src","img/icon_consultancy2.gif");
	},function(){
		$("img#animatedicon3").attr("src","img/icon_consultancy1.gif");
	});
	
	$("a#bigbuttonright1").hover(function(){
		$("img#animatedicon1").attr("src","img/icon_concept2.gif");
	},function(){
		$("img#animatedicon1").attr("src","img/icon_concept1.gif");
	});
	
	$("a#bigbuttonright2").hover(function(){
		$("img#animatedicon2").attr("src","img/icon_cad2.gif");
	},function(){
		$("img#animatedicon2").attr("src","img/icon_cad1.gif");
	});
	
	$("a#bigbuttonright3").hover(function(){
		$("img#animatedicon3").attr("src","img/icon_consultancy2.gif");
	},function(){
		$("img#animatedicon3").attr("src","img/icon_consultancy1.gif");
	});

});