/* -------------------------------------------------------------------------------------------
--	JAVASCRIPT KILARNY.ES		----------------------------------------------------------------
--	Realizacion: digival.es 		-------------------------------------------------------------
--	joseignacio.marcos@digival.es -------------------------------------------------------------
------------------------------------------------------------------------------------------- */
function iniciaKilarny(){

	//CAMBIO DE IMAGENES DEL LISTADO
	if($('div.contImg').length){
		$('div.contImg').each(function(i, elm){
			if($(elm).find('img').length==2){
				$(elm).bind('mouseenter', function(){
					$($(elm).find('img')[0]).css('display', 'none');
				}).bind('mouseleave', function(){
					$($(elm).find('img')[0]).css('display', '');
				});
			}
		});
	}//FIN del cambio de imagenes del listado
	
	//SCROLL DE LA PORTADA
	if($('#scrollPortada').length)
		$('#scrollPortada').scrollable({items: 'div.elementosPortada'});
			
	
	//ACCIONES DE LA FICHA
	if($('div.imagenFicha').length){
	
		//SCROLL DE LA FICHA
		if($('#scrollable').length)
			$('#scrollable').scrollable(); 
	
		//CAMBIO DE IMAGENES DE LA FICHA		
		var cambiando = 0;
		//$('.items a').each(function(i, elm){
		$('.items a').live('click', function(event){
			event.preventDefault();
			var mini = this;
			if(cambiando==0){
					cambiando = 1;
					$('#imgCambiar').fadeOut("normal", function(){
						$(this).remove();
						$("div.imagenFicha").css('background', 'url(images/load.gif) no-repeat 50% 50%');
						$("div.imagenFicha").append('<img src="'+mini.href+'" width="340" height="340" alt="'+mini.title+'" title="'+mini.title+'" id="imgCambiar" />').hide().fadeIn('normal', function(){
						$("div.imagenFicha").css('background', 'none');
						cambiando = 0;
						
						if($(mini).hasClass('imgPrimGrande')){
							$('#imagenAmpliar').show();
							$('#imagenAmpliar').attr('href', mini.title);
						}else{
							$('#imagenAmpliar').hide();
						}
						});
					});
				}
			//return false;
		});
		//});
		
	} //FIN acciones ficha
	
} //FIN DE iniciaKilarny


//COPIAR DATOS DEL FORMULARIO //////////////////////////////////////////////////////////////////////////
function copiardatos() {
	document.frmdatos.nombred.value=document.frmdatos.nombreu.value;
	document.frmdatos.direcciond.value=document.frmdatos.direccion.value;
	document.frmdatos.cpd.value=document.frmdatos.cp.value;
	document.frmdatos.poblaciond.value=document.frmdatos.poblacion.value;
	document.frmdatos.idprovinciad.value=document.frmdatos.idprovincia.value;
	document.frmdatos.idprovinciad.selectedIndex=document.frmdatos.idprovincia.selectedIndex;
	document.frmdatos.paisd.value=document.frmdatos.pais.value;
	document.frmdatos.otropaisd.value=document.frmdatos.otropais.value;
	document.frmdatos.telefono1d.value=document.frmdatos.telefono1.value;
	document.frmdatos.telefono2d.value=document.frmdatos.telefono2.value;
	document.frmdatos.emaild.value=document.frmdatos.email.value;
}

/* -------------------------------------------------------------------------------------------
LOAD -----------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------- */ 
$(document).ready(iniciaKilarny);