 $(document).ready(function(){
	   $("#bouton1").animate({marginLeft: "0px"}, 500 );
	   $("#bouton2").animate({marginLeft: "0px"}, 1000 );
	   $("#bouton3").animate({marginLeft: "0px"}, 1500 );
	   $("#bouton4").animate({marginLeft: "0px"}, 2000 );
	   $("#bouton5").animate({marginLeft: "0px"}, 2500 );
	   $("#bouton6").animate({marginLeft: "0px"}, 3000 );
	   
	   
	    $("#bouton1").hover(function () {
		  $("#bulle").animate({marginTop: "-5px"}, 200 );
		  $("#bulle").html("<b>Compliance testing streams</b><br>H.264 decoders ICs, STB, Blu-Ray...");
		  $("#bouton1").css({ "opacity":"1", "background-image":"url(images/bouton_on.gif)"});}, function () {
			  var cssObj = {"opacity":"0.6", "background-image":"url(images/bouton.gif)" }
			  $("#bouton1").css(cssObj);
		});
	    $("#bouton2").hover(function () {
		  $("#bulle").animate({marginTop: "30px"}, 200 );
		  $("#bulle").html("<b>Audio/video encoder</b><br>IPTV, PiP, Internet TV, Mobile TV");

		  $("#bouton2").css({ "opacity":"1", "background-image":"url(images/bouton_on.gif)"});}, function () {
			  var cssObj = {"opacity":"0.6", "background-image":"url(images/bouton.gif)" }
			  $("#bouton2").css(cssObj);
		});
	    $("#bouton3").hover(function () {
		  $("#bulle").animate({marginTop: "65px"}, 200 );
		  $("#bulle").html("<b>Audio/video transcoder</b><br>IPTV, PiP, Internet TV, Mobile TV");
		  $("#bouton3").css({ "opacity":"1", "background-image":"url(images/bouton_on.gif)"});}, function () {
			  var cssObj = {"opacity":"0.6", "background-image":"url(images/bouton.gif)" }
			  $("#bouton3").css(cssObj);
		});
	    $("#bouton4").hover(function () {
		$("#bulle").animate({marginTop: "97px"}, 200 );
		  $("#bulle").html("<b>Mosaic generator</b><br>IPTV channel browsing, monitoring");
		  $("#bouton4").css({ "opacity":"1", "background-image":"url(images/bouton_on.gif)"});}, function () {
			  var cssObj = {"opacity":"0.6", "background-image":"url(images/bouton.gif)" }
			  $("#bouton4").css(cssObj);
		});
	    $("#bouton5").hover(function () {
		  $("#bulle").animate({marginTop: "134px"}, 200 );
		  $("#bulle").html("<b>Audio/video encoder</b><br>T-DMB Mobile TV, Digital/Visual Radio");
		  $("#bouton5").css({ "opacity":"1", "background-image":"url(images/bouton_on.gif)"});}, function () {
			  var cssObj = {"opacity":"0.6", "background-image":"url(images/bouton.gif)" }
			  $("#bouton5").css(cssObj);
		});
	    $("#bouton6").hover(function () {
		  $("#bulle").animate({marginTop: "171px"}, 200 );
		  $("#bulle").html("<b>Hardware encoding IPs</b><br>H.264, Real-time, High definition");
		  $("#bouton6").css({ "opacity":"1", "background-image":"url(images/bouton_on.gif)"});}, function () {
			  var cssObj = {"opacity":"0.6", "background-image":"url(images/bouton.gif)" }
			  $("#bouton6").css(cssObj);
		});
		
		  $("#flash").hover(function () {},function () {
		  $("#bulle").animate({marginTop: "-67px"}, 200 );
		 
		});
		
	  //alert("123");
 });
