$(document).ready(function() {
	//Give more & back button round corners
	$('.more').corner();

	// Activate PrettyPhoto Lightbox handle
	$("a[rel^='gallery']").prettyPhoto();

	//Close the error box for form pages
	$('a#error-link').click(function() {
		$('#error-box').slideUp('slow');
		return false;
	});
	$('a#warning-link').click(function() {
		$('#warning-box').slideUp('slow');
		return false;
	});
	//jquery drop down nav
	//$("ul.sub-nav").parent().append("<span></span>");
	$("ul.top-nav li").hover(function() {
		$(this).find("ul.sub-nav").stop().slideDown('fast').show('slow', function(){
			$(this).height("auto");
		}); 
		$(this).parent().hover(function() {
		}, function(){	
			$(this).parent().find("ul.sub-nav").stop().slideUp('fast');
		});
		}).hover(function() { 
			$(this).addClass("sub-hover");
		}, function(){
			$(this).removeClass("sub-hover");
	});
});