$(document).ready(

function(){
	$('#imagesPetitBurger').innerfade({
			animationtype: 'fade',
			speed: 'slow',
			timeout: 3000,
			type: 'random_start',
			containerheight: '350px'
	});
	
	$('.acc_container').hide();
	//$('.acc_trigger:first').addClass('active').next().show();
	$('.acc_trigger').click(
		function(){
			if($(this).next().is(':hidden')){
				$('.acc_trigger').removeClass('active').next().slideUp();
				$(this).toggleClass('active').next().slideDown()
			}
			return false;
		}
	)
	
	$('.inputTxt')
	.focus(function(){
		if( this.value == this.defaultValue )
			this.value = '';
	})
	.blur(function(){
		if( !this.value || this.value == this.defaultValue )
			this.value = this.defaultValue;
	})
	.blur();
	
	Cufon.replace('.titu')('.titu1')('.titu2')('.acc_trigger')('#comida .entrada h1 span');
	
}

)
