$(document).ready(function() {
	
	$('.cof').focus(function() {
		if ($(this).attr('alt') == "")
		{
			$(this).attr('alt', $(this).val());
		}
		if ($(this).val() == $(this).attr('alt'))
		{
			$(this).val('');
		}
	});
	
	$('.cof').blur(function() {
		if ($(this).val() == '')
		{
			$(this).val($(this).attr('alt'));
		}
	
	});
	
	$('#showFacture').click(function() {
		$('.contentFacture').show();
		return false;
	});
	
	$('a[rel=fancybox]').fancybox();
	
	$(window).resize(function(){
		toggle_baseline();	
	});

	toggle_baseline();
	function toggle_baseline() {
		if($(this).width() <= 1155) {
			$(".websiteLegend").hide();
		} else {
			$(".websiteLegend").show();
		}
	}
});

