$(document).ready( function(){
	
	/*
	----------------------------------------------------------
	01. GENERAL
	---------------------------------------------------------- */
	
	// EXTERNAL WINDOWS
	$('A[rel="external"]').click( function() {
        window.open( $(this).attr('href') );
        return false;
    });

	// MONCUR LOGO ANIM
	$("#moncur a").hover(function() {
		$(this).prev("span").animate({opacity: "show"}, "slow");
	}, function() {
		$(this).prev("span").animate({opacity: "hide"}, "fast");
	});

	
	/*
	----------------------------------------------------------
	03. FORMS
	---------------------------------------------------------- */	
	$("#errors").hide();

	
	
	/*
	----------------------------------------------------------
	04. FONT REPLACEMENT
	---------------------------------------------------------- */
	Cufon.replace('h1:not(".alert")')('h2:not(".alert")')('h3')('blockquote');
	Cufon.replace('#nav-main', {
		hover: true
	});
	Cufon.replace('#nav-secondary', {
		hover: true
	});
	
	
	

	
	// make entire block clickable
	$("#facilities dl.slider dd ul li").click(function(){
    	window.location=$(this).find("a").attr("href");return false;
	});
	
	
	$("div.highlight img").hover(function() {
		$(this).animate({opacity: "0.6"}, "slow");
	}, function() {
		$(this).animate({opacity: "1"}, "slow");
	});
	


	

});

