/**
 * SLAM! JavaScripts
 * This file should be used to store all site-wide scripts.
 */ 

/**
 * Flash Info Popup
 * Requires jQuery 1.3.2+.
 */ 
$(document).ready(function () {
	$("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;
	});
});