//Imagenes PNG para el IE6
function cargarImgPng(){
	DD_belatedPNG.fix('.panel-overlay, h1 img');
}

//Configuracion de las galerias de contenidos que se animan con jquery
$(document).ready(function() {
	$('.modulogaleria > div.cajagal').removeClass('hide-with-script');
	if($('.galleryview')){
		$('.galleryview').css({"position" : "relative", "height" : "320px"});
		$('.galleryview > div:not(:first)').css('display', 'none');
		$('.galleryview > .panel').css({"position" : "absolute", "height": "320px"});
		$('.galleryview .panel-overlay').css('position', 'absolute');
		$('.galleryview > .filmstrip').css('display', 'block');
		var id=$('.galleryview').attr('id');
		var galeria = $('#'+id).galleryView({
			nombre: id, 
			tam_navegacion: 1, 
			posicion_navegacion: 'center',
			nav_theme: 'paleta',
			transition_speed: 400,
			transition_interval: 4000,
			anchoBotones: 34
		});
		$(window).resize(function(){
			galeria.galleryView();
		});
	}
	// 
	$('.fotos .cajainfo').addClass("mensaje");
	$('.fotos li').each(function(i,val) {
		if ($(this).find(".cajainfo").html() != null) {
			$(this).qtip({
			 content: $(this).find(".cajainfo").html(),
			 position: { corner: { target: 'topMiddle', tooltip: 'center' } },
			 style: { 
				 name: 'galeria'
			 },
			 show: { effect: function(){ $(this).animate({"height": "toggle", opacity: 0.85}, 0 ) } },
			 hide: { fixed : true }
			});
		}
	});
	$('#categoriaImagenes').change(function() {
		document.forms[1].submit();
	});
	$('#botonBuscar').hide();
});

$.fn.qtip.styles.galeria = {
	 'font-size': '75%',
	 'padding': '20px 5px 10px 5px',
	 'background': '#3a3a39',
	 width: 200,
	 textAlign: 'center',
	 border: { radius: 2, width: 2, color: '#fff'},
	 tip: 'bottomMiddle',
	 name: 'dark'
}
