jQuery(document).ready(function() {

	// right hand column, latest issue hover effect

		var issueSummaryImageURL = jQuery("#issueSummary #latestIssueMainThumb img").attr("src");
	jQuery("#issueSummary ul li").hover(
      function () {
		var issueImageURL = jQuery(this).children("img").attr("src");
		jQuery("#issueSummary #latestIssueMainThumb img").attr("src",issueImageURL);
					
      },
	  function () {
		jQuery("#issueSummary #latestIssueMainThumb img").attr("src",issueSummaryImageURL);
	  }

    );
	
});

function confirmation() {
	var answer = confirm("Are you sure you want to delete this press release?");
	if (answer){
		alert("Deleting press release...")
		window.location = "/archive-press-release?archiverelease=%asset_assetid%&archive=true";
	}
	else{
	}
}