jQuery(document).ready(function() {
   jQuery('.slideshow').cycle({
		fx: 'none',
		timeout: 400,
		speed:1,
		cleartypeNoBg:  true,
		cleartype: true
	});

	jQuery('.servei').mouseenter(function(){jQuery(this).find('.text_servei').fadeIn('fast');jQuery(this).find('#titol').addClass('vermell');});
	jQuery('.servei').mouseleave(function(){jQuery(this).find('.text_servei').fadeOut('fast');jQuery(this).find(' #titol').removeClass('vermell');});
    jQuery('#mycarousel').jcarousel();

	//jQuery.preloadCssImages();



	ocultar();
	mostrar(0);

	jQuery('#block').show();

	jQuery('.llistat_projectes li').hover(
		function(){
			txt = jQuery(this).attr("id");
			id = txt.split("_")[1];
			ocultar();
			mostrar(id);
		}
	);
	jQuery('.mapa_contacte').click(
		function(){
			id = jQuery(this).attr("id");
			jQuery(".mapa").hide();
			jQuery("#mapa_gta").hide();
			jQuery("#mapa_formulari").hide();
			jQuery("#mapa_"+id).show();
			jQuery("#mapa_bcn").show();
			jQuery(".mapa_contacte").removeClass("vermell");
			jQuery(this).addClass("vermell");
		}

	);
	jQuery('#google').click(
		function(){
			id = jQuery(this).attr("id");
			jQuery("#mapa_bcn").hide();

		}
	);
	jQuery('#formulari').click(
		function(){
			id = jQuery(this).attr("id");
			jQuery("#mapa_bcn").hide();
		}
	);
});


function ocultar()
{
	jQuery('.llistat_fotos').children().each(function(index) {
    	jQuery(this).addClass('ocult');
  	});
}

function mostrar(id)
{
	if(id==0)
		jQuery('.llistat_fotos li:first').removeClass('ocult');
	else
		jQuery("#foto_"+id).removeClass('ocult');
}

$(this).parent().find('.content-descripcio')
  $("table").hover(
    function() {  // mouseover
         $(this).addClass('highlight');
    },
    function() {  // mouseout
         $(this).removeClass('highlight');
    }
  );

