// Check that the page has loaded
$(document).ready(function() {

	// CONTENT DROPDOWNS
		$('.content .dropdown .dropdownContent:gt(0)').hide();
		$('.content .dropdown H2').click(function(){

			// If not open, then open (close all others)
        	if(!$(this).parents('.dropdown').hasClass('selected')){

				// Close all others
                $('.content .dropdown .dropdownContent').slideUp(200, function(){
                	$('.content .dropdown').removeClass('selected');
				}).find('H3').hide();

				// Open clicked one
				$(this).parents('.dropdown').find('.dropdownContent').slideDown(200, function(){
                	$(this).parents('.dropdown').addClass('selected').find('H3').show();
				});

        	} else {

				// Close clicked dropdown (and H3 - IE 6/7 cufon bug)
				$(this).parents('.dropdown').find('.dropdownContent').slideUp(200, function(){
                	$(this).parents('.dropdown').removeClass('selected');
				}).find('H3').hide();

        	}

		});

	// awards dropdown
		$('.toggle-content').hide();
		$('.toggler-head').click(function(){			
			$(this).next('.toggle-content').toggle();
			$(this).toggleClass('active-toggler');
		});
	// CUFON (reduce spacing due to increased spacing of Futura
    	$('.content H1, .content H2, .content H3, .content H4, .content .right-pdf a').addClass('reduceSpacing');
		Cufon.replace('.content H1, .content H2, .content H3, .content H4, .content .right-pdf a');

	// Big Target for homepage
		$(".homepageBox .col2 A").bigTarget({
		    hoverClass: 'over', // CSS class applied to the click zone onHover
		    clickZone : '.homepageBox' // jQuery parent selector
	  	});
		$(".homepageBox").css('cursor', 'pointer');




});
