$(function(){

	// I should probably go in global.js when I'm ready
	$("#firePopup").click(function(){
		myWindow = window.open($(this).attr("href"), "firePopup", "width=320, height=240");
		myWindow.focus();
		return false;
	})

	$(".litlink a").click(function(){
		$("#links").addClass("viewlit").load($(this).attr("href")).scrollTop(0);
		return false;
	})

	$(".pdfdl").click(function(){
		window.open($(this).attr("href"));
		return false;
	})

$(function(){
	$("#links").addClass("viewnotes").html("<h4>Please select a product from the left</h4>");
})
});
