// JavaScript Document

/* Menu déroulant */

function montre(id) {
  if (document.getElementById) {
	  document.getElementById(id).style.display="block";
	} else if (document.all) {
	  document.all[id].style.display="block !important";
	} else if (document.layers) {
	  document.layers[id].display="block !important";
	} } 

function cache(id) {
if (document.getElementById) {
		document.getElementById(id).style.display="none";
	} else if (document.all) {
		document.all[id].style.display="none !important";
	} else if (document.layers) {
		document.layers[id].display="none !important";
	} 
}	

/* Changer la taille des caractères */

var t=1;
function changerTaille(modif) {
	t = t + modif ;
	$(".chapo").css("font-size",t + "em");
	$(".cnt").css("font-size",t + "em");
	$(".ps").css("font-size",t + "em");	
} 	

(function($){
	
	$(document).ready(function(){
							   
		$('#col3').sortable( {
			items: '.drag',
			handle: '.tit',
			cursor: 'move',
			opacity: 0.6
		} );
		
	});
	
	
})(jQuery);

