$(document).ready(function(){

	$("ul.topnav li span").hover(function() {
		$(this).parent().find("ul.subnav").slideDown('fast').show();
		$(this).parent().hover(function() {
		}, function(){	
			$(this).parent().find("ul.subnav").slideUp('slow');
		});
		}).hover(function() { 
			$(this).addClass("subhover");
		}, function(){
			$(this).removeClass("subhover");
	});
	
	// Datepicker
	/*$("#datepicker").datepicker();
	$("#format").change(function() { $('#datepicker').datepicker('option', {dateFormat: $(this).val()}); });
	$("#datepicker2").datepicker();
	$("#format").change(function() { $('#datepicker2').datepicker('option', {dateFormat: $(this).val()}); });*/
	
	// Formularis
	$('#Buscador').jqTransform({imgPath:'js/jqtransformplugin/img/'});

	//FancyBox
	$("a[rel=gallery]").fancybox({
		'transitionIn'		: 'elastic',
		'transitionOut'		: 'elastic',
		'titlePosition' 	: 'over',
		'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {
			return '<span id="fancybox-title-over">Image ' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' &nbsp;-&nbsp; ' + title : '') + '</span>';
		}
	});

});

/* --------------- VENTANA POP UP -------------------------*/
function openPopup(url, location, width, height){
	var opcions = "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,dialog=yes,width="+width+",height="+height+",top=85,left=140";
	window.open(url, location, opcions);
}

function Link(Url){	if(Url!=""){ document.location.href=Url; } }

function Search(){
	if(document.getElementById("Tipo")){
		document.getElementById("Buscador").action = document.getElementById("Tipo").value;
	}
	document.getElementById("Buscador").submit();
}

function SubmitForm(id){
	document.getElementById(id).submit();
}

function SelectProvincias(){
	if(document.getElementById('Pais').value=='0'){
		document.getElementById('div_provincias').style.display='block';
	}else{
		document.getElementById('div_provincias').style.display='none';
	}
}
