$(document).ready(function(){  

    // This is a fix for IE6, where the pngfix prevents users from clicking on the main feature links (not sure why)
	// We do two things: 
	// 1. Make the cursor pointer into a hand to show it's a link
	// 2. Find the href attribute of the link tag and use it in a function to go to the desired page
	// This is not an accessibility issue as the problem is caused by JavaScript in the first place, so if JS is turned off, neither problem nor solution will come into play.

	$('.leadPromo').css('cursor', 'pointer');
	$(".leadPromo").click(function(){
	  window.location=$(this).find("a").attr("href"); return false;
	});

});


