//************************************************************
//	Project: Synagis.com
//	File: global.js
//************************************************************

// This is our onLoad function DO NOT REMOVE
$(document).ready(function(){


//************************************************************
//	Do sliding on Article Order Form
//************************************************************
	$(".abstracts .slider").hide();								// Hide the content of out slider
	$(".abstracts a").toggle(									// If 
		function() {
			var index = $(this).attr("id").charAt(1);
			$("#d" + index).slideDown();
			$(this).text("Close");
		}, function() {
			var index = $(this).attr("id").charAt(1);
			$("#d" + index).slideUp();
			$(this).text("View Abstract");
		}
	);

	//************************************************************
	//	Toggle select all on Article Order Form
	//************************************************************
	$("#ckSelectAll").click(function() {
	    if (!$(this).is(":checked")) {
	        $(".abstracts input[@type=checkbox]").each(function(e) {
	            $(this).removeAttr("checked");
	        });
	    } else {
	        $(".abstracts input[@type=checkbox]").each(function(e) {
	            $(this).attr("checked", "checked");
	        });
	    }
	});
});