$(function() {
	
	// Scrolling
	$("a[href^='#']").click(function() {
		var destination = $(this).attr('href');
		if ( destination == "#" ) return false;
		$('html, body').animate({scrollTop: $(destination).offset().top}, 500, function() {
			return true;
		});
	});
	
	// Lightbox
	$('.image_list a').lightBox();
	$('a.lightbox').lightBox();
	
	// Portfolio hover listener
	$('ul.thumb_list a').hover(function(){
		$(this).find('p').stop(true, true).slideDown();
		
	}, function() {
		$(this).find('p').stop(true, true).slideUp();
	});
	
});
