var IS_IE = (document.all) ? true : false;
var CLASS_NAME = (IS_IE) ? "className" : "class";

var regex = new RegExp("[A-Za-z0-9._-]{1,}@[A-Za-z0-9._-]{1,}[.][A-Za-z]{2,}", "gi"); 

// --------------------------------------------------------
//  Fermer un objet
// --------------------------------------------------------
function fermer(_div) {
	$("#"+_div).fadeOut('fast');	
}
function changer_sous_cat_modif(_id)
{        
	if (_id != '') {
		Xhr();        
		fichier = "admin/ajax_form_choix.php?sc="+_id;
		req.open("GET",fichier,true);
		req.setRequestHeader('Content-Type','application/x-www-form-urlencoded');
		req.onreadystatechange = function(){
			if(req.readyState == 4 && req.status == 200) {
				$('#scat2').html(req.responseText);
			}
		}        
		req.send(null);
	}
}

jQuery(document).ready(function(){
  jQuery('.categories').click(function(){
    _id = this.id;
    _tab = _id.split("_");
	
	jQuery("#cat_"+_tab[1]).slideDown('slow').load('test.php?afficheSousCat&idCat='+_tab[1]);
  });            
});


