$(document).ready(function(){
						   $("#ar").fadeTo("slow", 1.0); // This sets the opacity of the thumbs to fade down to 30% when the page loads
						   $("#ar").hover(function(){
						   $(this).fadeTo("slow", 0.0); // This should set the opacity to 100% on hover
						   },function(){
						   $(this).fadeTo("slow", 1.0); // This should set the opacity back to 30% on mouseout
						   });
						   });

$(document).ready(function(){
						   $("#pe").fadeTo("slow", 1.0); // This sets the opacity of the thumbs to fade down to 30% when the page loads
						   $("#pe").hover(function(){
						   $(this).fadeTo("slow", 0.0); // This should set the opacity to 100% on hover
						   },function(){
						   $(this).fadeTo("slow", 1.0); // This should set the opacity back to 30% on mouseout
						   });
						   });


$(document).ready(function(){
						   $("#pr").fadeTo("slow", 1.0); // This sets the opacity of the thumbs to fade down to 30% when the page loads
						   $("#pr").hover(function(){
						   $(this).fadeTo("slow", 0.0); // This should set the opacity to 100% on hover
						   },function(){
						   $(this).fadeTo("slow", 1.0); // This should set the opacity back to 30% on mouseout
						   });
						   });




// JavaScript Document
// FUNCION MOSTRAR CAPA Y OCULTAR PERSONAL 'slow' 'fast'

$ ( document ) . ready ( function ( ) {
// hides the slickbox as soon as the DOM is ready
$ ( '#personal' ) . hide ( ) ;
// shows the slickbox on clicking the noted link
$ ( '#pe' ) . mouseleave ( function ( ) {
$ ( '#personal' ) . fadeTo("slow", 0.0) ;
return false ;
} ) ,
// hides the slickbox on clicking the noted link
 $ ( '#pe' ) . mouseenter ( function ( ) {
 $ ( '#personal' ) . fadeTo("slow", 1.0) ;
return false ;
} ) ;
// toggles the slickbox on clicking the noted link
//$ ( '#pe' ) . hover ( function ( ) {
//$ ( '#personal' ) . fadeTo("slow", 1.0) ( 600) ;
//return false ;
//} ) ;
} ) ;

// FUNCION MOSTRAR CAPA Y OCULTAR ARTISTAS


$ ( document ) . ready ( function ( ) {
// hides the slickbox as soon as the DOM is ready
$ ( '#artistas' ) . hide ( ) ;
// shows the slickbox on clicking the noted link
$ ( '#ar' ) . mouseleave ( function ( ) {
$ ( '#artistas' ) . fadeTo("slow", 0.0) ;
return false ;
} ) ,
// hides the slickbox on clicking the noted link
 $ ( '#ar' ) . mouseenter ( function ( ) {
 $ ( '#artistas' ) .fadeTo("slow", 1.0)  ;
return false ;
} ) ;
// toggles the slickbox on clicking the noted link
//$ ( '#pr' ) . hover ( function ( ) {
//$ ( '#produccion' ) . toggle ( 400 ) ;
//return false ;
//} ) ;
} ) ;

// FUNCION MOSTRAR CAPA Y OCULTAR PRODUCCION

$ ( document ) . ready ( function ( ) {
// hides the slickbox as soon as the DOM is ready
$ ( '#produccion' ) . hide ( ) ;
// shows the slickbox on clicking the noted link
$ ( '#pr' ) . mouseleave ( function ( ) {
$ ( '#produccion' ) . fadeTo("slow", 0.0) ;
return false ;
} ) ,
// hides the slickbox on clicking the noted link
 $ ( '#pr' ) . mouseenter ( function ( ) {
 $ ( '#produccion' ) .fadeTo("slow", 1.0)  ;
return false ;
} ) ;
// toggles the slickbox on clicking the noted link
//$ ( '#pr' ) . hover ( function ( ) {
//$ ( '#produccion' ) . toggle ( 400 ) ;
//return false ;
//} ) ;
} ) ;



