$(document).ready(function() {



$('a[href*="pdf"]').parent().addClass('pdf');



$("#mapa1").gMap({
					
					latitude: 51.814638,
                    longitude: 19.49069,
					zoom:12,
					markers: [{ 
								latitude: 51.814638,
                    longitude: 19.49069,	
							  icon: { image: "http://conta.pl/wp-content/themes/thefuture/images/map-pin.png",
                                      iconsize: [34, 48],
                                      iconanchor: [12,46],
                                      infowindowanchor: [12, 0]
								  }
                  }]});
							  
							  $("#slide").easySlider({
				auto: true,
				continuous: true,
				speed: 			800,
				pause: 4000
				
	
			});


$('dd').hide(); //Hide/close all containers

    $('dt:first').addClass('active').next().show(); //Add "active" class to first trigger, then show/open the immediate next container



    //On Click

    $('dt').click(function(){

        if( $(this).next().is(':hidden') ) { //If immediate next container is closed...

            $('dt').removeClass('active').next().slideUp(); //Remove all "active" state and slide up the immediate next container

			$(this).toggleClass('active').next().slideDown(); //Add "active" state to clicked trigger and slide down the immediate next container

        }

        return false; //Prevent the browser jump to the link anchor

    }); 
	
	$('#form2').hide(); 
	
	/*$('.cform-switch a:first').addClass('active').click(function() {
		
		$(this).addClass('active');
		$('.cform-switch a:last').removeClass('active');
		$('#form1').show();
		$('#form2').hide();
	
	});
	
	$('.cform-switch a:last').addClass('last').click(function() {
		
		$(this).addClass('active');
		$('.cform-switch a:first').removeClass('active');
		$('#form2').show();
		$('#form1').hide();
	
	});*/
	
	
                              

}); 




