$(document).ready(function() {

	// Avoid use of target on links
	$('a[rel*=external]').click(function(e){
		e.preventDefault();
		window.open(this.href);
	});
	
	// Content collapsible
	$('.accordion').accordion({
		autoHeight: false,
		collapsible: true,
		header: 'h4',
		active: false
	});
	
	// Lightbox effect for images
	$('.lightbox').fancybox();
	
	// Slider in home page
	$('#slider-home').easySlider({
		auto: true,
		continuous: true,
		controlsShow: false,
		speed: 800,
		pause: 5000
	});

});
