/************************************************************
*                                                           *
* Copyright 2010 - osonadissenyweb.com                      *
*                                                           *
************************************************************/
var anterior = "quiralia";

$(document).ready(function(){
	$("#accordion").tabs("#accordion div.pane", {tabs: 'h2', effect: 'slide', initialIndex: null});

	$('.pane a').click(function(){
		$('.actproj').removeClass("actproj");
		$(this).addClass("actproj");
		ide = $(this).attr("rel");
		if (ide != anterior){
			ideant = '#' + anterior;
			$(ideant).fadeTo("slow", 0, function(){
				anterior = ide;
				ideamp = '#' + ide;
				$(ideamp).fadeTo("slow", 1);
			});
		}
	});

	$('.pane a').hover(function(){
		$(this).fadeTo("slow", 1);
	}, function(){
		if (!$(this).hasClass("actproj")){
			$(this).fadeTo("slow", 0.4);
		}
	});
});
