// home trame div height et bt roll-over

$(document).ready(function(){home._Init();});

var home={
	_Init:function(){
		// hauteur des trames
		$("#trame").height($(document).height());
		// rollover
		$("li#btCandidat a, li#btRecruteur a").mouseover(function(event){
			event.preventDefault();
			var id=$(this).parent().get(0).id.replace("bt", "bg");
			$('body').attr("id", id);
			event.stopPropagation();
		});
		// rollout
		$("li#btCandidat a, li#btRecruteur a").mouseout(function(event){
			event.preventDefault();
			$('body').attr("id", "");
			event.stopPropagation();
		});
	}
};
