$(document).ready(function(){
    
	// INITIALIZE DROP DOWN MENU STUFF
	$("#nav-one li").hover(
        function(){ $("ul", this).show(); },
        function() { }
    );
    if (document.all) {
        $("#nav-one li").hoverClass ("sfHover");
    }
	
	// OPEN SOME LINKS IN NEW WINDOW
	$("a[@rel='external']").attr("target","_blank");
	
     // FIRE UP HOME IMAGE ROTATOR
	 $('#home-splash-left').cycle({
          fx:  'fade',
          speed: 4000,
			timeout: 3000,
			delay: -2000
     });
	 	
});

$.fn.hoverClass = function(c) {
    return this.each(function(){
        $(this).hover(
            function() { $(this).addClass(c);  },
            function() { $(this).removeClass(c); }
        );
    });
};
