﻿// Functions specific to a site.

(function ($) {
    $(document).ready(function () {
        // Place document manipulation code here
    Cufon.replace('h1, h2, .login-text');
 
        
	    $('#proto-report .report tr:odd').addClass('odd-tr');
		
		var ia = 0;
		
		(function displayImages1() {
			$('#header-banner img').eq(ia++).fadeIn(500, displayImages1);
		})();
			

	    //	Superfish drop-down menus
//	    $('#mainnavigation ul.L1').superfish({
//	    			delay: 500, // one second delay on mouseout
//	    			animation: { opacity: 'show' }, // fade-in and slide-down animation
//	    			speed: 'fast', // faster animation speed
//	    			autoArrows: false,
//	    			dropShadows: false
//	    		}); 		
	});
})(jQuery);

