/**
 * Guides JQuery Plugin
 * 	Plugin for accessing guides or to display sign-up message
 *
 *	usage: used on the guides page
 *	dependencies: jquery.VIP.js
 */

(function(){
  /**
  * Onclick event for guide icons and more links.
  *
  *
  */
	$.accessGuide = function(id){
		$.csVOWPanel('csVOWAjax', {
			type: "GET",
			dataType: "html",
			url: "listings",
			data: "pathway=40&guideId=" + id + "&accessCheck=true",
			error: function(data, error){
				alert("Error - $.accessGuide(): " + error + " " + data);
			},
			success: function(data){
				window.location = "./listings?pathway=40&guideId=" + id;
			}
		}, function(){}, function(){}, true);
		return false;
	}
})();
