// JavaScript Document
$(document).ready(function(){	
						   
	// Easy Slider
	$("#slider").easySlider({ auto: true, continuous: true, speed: 1000, pause: 3000, controlsShow: false });
	
	// Curvy Corners
	$('.RoundAll8px').corner( { tl: { radius: 8 }, tr: { radius: 8 }, bl: { radius: 8 }, br: { radius: 8 }, antiAlias: true, autoPad: true } );
	$('.RoundTop8px').corner( { tl: { radius: 8 }, tr: { radius: 8 }, bl: { radius: 0 }, br: { radius: 0 }, antiAlias: true, autoPad: true } );
	$('.RoundBottom8px').corner( { tl: { radius: 0 }, tr: { radius: 0 }, bl: { radius: 8 }, br: { radius: 8 }, antiAlias: true, autoPad: true } );

	//FancyBox
	$("a[rel=gallery]").fancybox({
		'transitionIn'		: 'elastic',
		'transitionOut'		: 'elastic',
		'titleShow'			: false
		/*'titlePosition' 	: 'over',
		'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {
			return '<span id="fancybox-title-over">' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' &nbsp;-&nbsp; ' + title : '') + '</span>';
		}*/
	});
	
	// Gallery
	/*$("#gallery-thumbs img").click(function(){
		var src = this.src;
		var alt = this.alt;
		$('#gallery-img').fadeOut(500);
		setTimeout(function(){
			$('#gallery-img a').attr('href', src);
			$('#gallery-img a').attr('title', alt);
			$('#gallery-img img').attr('src', src);
			$('#gallery-img img').attr('alt', alt);
			//$('#gallery-img').html("<a href='"+src+"' title='"+alt+"' rel='gallery'><img src='"+src+"' alt='"+alt+"' /></a>");
			$('#gallery-img').fadeIn(500);
		}, 600);
	});*/
	//$("#first-thumb").click();
	
});	

/* Desplega element */
function toggle(id){ $('#'+id).slideToggle('slow'); }

/* Redirecció */
function redirect(src){ window.location = src; }
