$(document).ready(function (){

	$(".SCR_CONTE_scroll").APS_Scroll({
		manoScroll:true,
		botonesScroll:true,
		desacelerarScroll:4,
		botonVelocidad:1
	});
	
	$(".WEB_CONTE_idioma").filter(function(e){
		$(this).bind("mouseover",function(){
			this.className="WEB_CONTE_idioma_on";
			$(this).children("div").show();
		})
		
		$(this).bind("mouseout",function(){
			this.className="WEB_CONTE_idioma";
			$(this).children("div").hide();
		})
		
	})
	
	$(".WEB_CONTE_fondoZonaTitulo").filter(function(e){
	
		$(this).bind("mouseover",function(){
			this.className="WEB_CONTE_fondoZonaTitulo_on";
			$(this).children("div").filter(function(){
				this.className="WEB_zonaTitulo_on";
			})
		})
		
		$(this).bind("mouseout",function(){
			this.className="WEB_CONTE_fondoZonaTitulo";
			$(this).children("div").filter(function(){
				this.className="WEB_zonaTitulo";
			})
		})
		
		$(this).bind("click",function(){

			cerrarContenido(e)
			
			$(this).unbind("mouseover")
			$(this).unbind("mouseout")

			
			this.className="WEB_CONTE_fondoZonaTitulo_on";
			$(this).children("div").filter(function(){
				this.className="WEB_zonaTitulo_on";
			})
			
			$(this).next("div").slideDown("1000");

		})
		
	})
	
	
	function cerrarContenido(num){
		$(".WEB_CONTE_zonaContenido").filter(function(e){
			if(num!=e){
				$(this).slideUp("1000");
			}
		})

		$(".WEB_CONTE_fondoZonaTitulo_on").filter(function(){
			this.className="WEB_CONTE_fondoZonaTitulo";
		})
		
		$(".WEB_CONTE_fondoZonaTitulo").filter(function(e){
	
			if(num!=e){
				
				this.className="WEB_CONTE_fondoZonaTitulo";
				$(this).children("div").filter(function(){
					this.className="WEB_zonaTitulo";
				})
				
				$(this).bind("mouseover",function(){
					this.className="WEB_CONTE_fondoZonaTitulo_on";
					$(this).children("div").filter(function(){
						this.className="WEB_zonaTitulo_on";
					})
				})
				
				$(this).bind("mouseout",function(){
					this.className="WEB_CONTE_fondoZonaTitulo";
					$(this).children("div").filter(function(){
						this.className="WEB_zonaTitulo";
					})
				})
				
				
			}
		})
		
	}
	
	function iniciarZona(num){

	    $("#ctl00_ZOP_Control1_Rpt_ZonaPagina_ctl0" +num+ "_Zona").filter(function() {
			
			cerrarContenido(num)
			
			$(this).unbind("mouseover")
			$(this).unbind("mouseout")

			this.className="WEB_CONTE_fondoZonaTitulo_on";
			$(this).children("div").filter(function(){
				this.className="WEB_zonaTitulo_on";
			})
			
			$(this).next("div").slideDown("1000");	
		})
		
	}

	iniciarZona(0)

	$(".ZOPF_TXT_direccion").filter(function(e){
		$(this).css({'background-color':'transparent'});
	}) 

	
});
