var current = 0;

function changeContent() {
	jQuery("#banner_onglet").children().each(function(i) {
		jQuery(this).removeClass("current");
		jQuery(this).next().children().css({ "border-left":"1px solid #F0F0F0" });
	});
	jQuery("#banner_onglet").children().eq(current).addClass("current");
	jQuery("#banner_onglet").children().eq(current).children().css({ "border-left":"0"});
	if(current != 0) {
		jQuery("#banner_onglet").children().eq(current).children().css({ "padding-left":"0" });
	}
	jQuery("#banner_onglet").children().eq(current).next().children().css({ "border-left":"0" });
	var bg = jQuery("#banner_txt").children().eq(current).children("img").attr("src");
	jQuery("#banner").css("background-image","url(" + bg.replace(/ /g,'%20') + ")");
	jQuery("#banner_txt").children().eq(current).removeClass("hide");
}

function initBanner() {
	changeContent();
	jQuery("#banner_onglet").children().each(function(i) {
		jQuery(this).mouseover(function() {
			jQuery("#banner_txt").children().eq(current).addClass("hide");
			current = i;
			changeContent();
		});
	});
}