
	$(document).ready(function(){
	
		// Pick out the Lightbox-able images
		$('a[@rel]').lightBox(); // Select all links that contains lightbox in the attribute rel
		
		// Drop-down news on the front page
		$("#btn-more_news").click(function(){
			$("#panel-more_news").slideToggle("fast");
			$(this).toggleClass("active");
		});
	});
