$(document).ready(function()
{

	$("a[rel='gallery']").colorbox({maxWidth:"100%", maxHeight:"100%",scalePhotos:true});
    $("a[rel='lightbox']").colorbox({maxWidth:"100%", maxHeight:"100%",scalePhotos:true});

	// Header links
	$('#nav li a').hover(function()
	{
		$(this).css({'padding-bottom':'5px', 'border-bottom-width':'0'}).animate({borderBottomWidth:'5px', paddingBottom:'0'}, 100);
	}, function()
	{
		$(this).css({'padding-bottom':'0', 'border-bottom-width':'5px'}).animate({borderBottomWidth:'0', paddingBottom:'5px'}, 100);
	});
	

});
