// JavaScript Document

(function($){
		  
	Cufon.replace('#content h1')('h2')('#header ul li a.top')('#footer-right td a', {hover: true})('.dakota', {hover: true})('.cufon', {hover: true})('table thead td', {hover: true})('#minigrid th')('#grid th')('.tblRegistration th');
	
    $(document).ready(function() {
		$('#header ul:first').children().hover(
    		function(){
				$(this).addClass('hover');
        		$('ul', this).css('top', '30px');
				$('ul li', this).hover(
					function(){ 
						$(this).css('background', '#39b54a');
					}, 
					function(){
						$(this).css('background', '');
					}
				);
    		},
    		function(){
        		$('ul', this).css('top', '-200em');
				$(this).removeClass('hover');
    		}
    	);
		
		$('input[type=text], textarea').not('.noExample').example(function() {
  			return $(this).attr('title');
		}, {className: 'gray'});
		
		$('.fancy').fancybox();
		
		$('.noLink').click(function(){ return false; })
    });
})(jQuery);
