/**
 * JAM JavaScripts
 * This file should be used to store all site-wide scripts.
 */ 


$(document).ready(function () {
	/**
	 * Flash Info Popup
	 * Requires jQuery 1.3.2+.
	 */
	$("div#flashInfoStoryEmbed a").bind("click", function(e) {
		var flashInfoURL = $(this).attr("href");
		
		if (flashInfoURL != '') {
			window.open(flashInfoURL, "flashInfo", "width=950,height=670,left=0,top=0");
		}
		
		return false;
	});
});