/*
 * Funcion para llamar a los TABS
 */
 function tabsCreator (id, rotate){
 	// Seleccionamos segun el id que recibimos
 	switch (rotate){
 		case "0":
 			$('#'+id+' > ul').tabs({ fx: { opacity: 'toggle' } }).tabs('rotate', 5000);;
 			break;		
 		
 		case "1":
 			$('#'+id+' > ul').tabs();
 			break;
 	}
  
 }