/*
	Object				: JavaScript Document - Hover FX Buttons for TFWA Rentals...
	Developer			: Philippe Marechal
	Company				: ImmoDirectory
	Date				: 18 june 08
*/
function imgBtnHover(id){
	var d=document.getElementById(id);
	if(d){	
		d.style.cursor="pointer";
		d.style.backgroundImage="url(/images/mc_inq_button_hover.png)";
		d.style.backgroundRepeat="no-repeat";
		d.style.fontWeight="bold";
	}
}   
function imgBtnOut(id){
	var d=document.getElementById(id);
	if(d){	
		d.style.cursor="default";
		d.style.backgroundImage="url(/images/mc_inq_button_normal.png)";
		d.style.backgroundRepeat="no-repeat";
		d.style.fontWeight="normal";
	}
}   
