$.address.init(function(event) {
	$('a[rel=ajax]').address();
}).change(function(event) {
	var value=event.value;
	if (value=="/")
	{
		value="/accueil";
	}
	value=value.substring(1);
	show_content(value);

});

function show_content(id)
{
	$('.onglet').each(
		function(){
			if ($(this).attr('id')!=id)
			{
				$(this).hide();
			}
			else
			{
				$(this).animate({ opacity: 'show' },800);
				//$(this).slideDown("slow");
			}
		});
	$("#tarifs li").removeClass("active");
	$("#tarifs li[rel="+id+"]").addClass("active");
}



$(document).ready(function() {
        $('#tarifs li').each(
		function(){
			$( this ).bind (
			"click",
			function(){
				if ($(this).attr('rel')!=null)
				{
					$.address.value($(this).attr('rel')); 
				}
			}
			);
		});
});



