jQuery.noConflict();
jQuery(document).ready( function($) {
	
	var iphone=0;
	if((navigator.userAgent.match(/iPhone/i))||(navigator.userAgent.match(/iPod/i))){
		iphone=1
	}
	if(iphone==0){ //pas pour iphone
	
		$("#onglet_creasap").delay(4000).animate({
			marginTop: '-140px'
		}, 1000, 'swing');
		$('#handle,#refermer').click(function() {
			var newmtop="0px";
			if($(this).parent().css("marginTop")=="0px"){newmtop="-140px";}
			$(this).parent().animate({
				marginTop: newmtop
			  }, 1000, 'swing');
		});
		
	}
	
});
