/*-------------------------------------------------------------------------------
 * jQuery Website Screen Behavior Layer
 * Author: Scott Jehl, scottjehl.com
 * Created: April 08
 * Notes:
-------------------------------------------------------------------------------*/
$(function(){
		//add enhanced class to body
		$('body').addClass('jq-enhanced');

		//create faux radios that control actual radios 







		//nav drop shads
                
		$('.jq-checkpoints li').hover(
			function(){$(this).find('div.jq-checkpointSubhead:hidden').fadeIn(500);},
			function(){$(this).find('div.jq-checkpointSubhead:visible').fadeOut(500);}
		);

		//cta click
		$('.jq-checkpoints li div p').click(function(){
			$(this).parent().prev().trigger('click');
		});





		
	
		/* Disabled by Dean - generates an error 
                $(document).pngFix(); 
                */
		
});

