/*!	Scripts for the Tooltip menu  in french homepage

*/



// What is $(document).ready ? See: http://flowplayer.org/tools/documentation/basics.html#document_ready

$(document).ready(function() {

	$("#homepage_tooltip_how_can_we_help_you").tooltip({position: "center right", offset: [9, 0], effect: 'toggle'});

});



$('.homepage_tooltip').hover(function() {

 document.getElementById("homepage_tooltip_how_can_we_help_you").style.backgroundPosition="0 -267px";

}, function() {

 document.getElementById("homepage_tooltip_how_can_we_help_you").removeAttribute("style");

 

});
