﻿$(document).ready
(
	function()
	{


	$("#main_content table tr:even").addClass('SF_even');

	/*
	=================================================
		Course click
	=================================================
	*/	
	if ($("#cntnt01fbrp__30").length) {
		$("#cntnt01fbrp__30").val($.url.param("course"));
	}

	$("td.apply a").click(function () { 
		var NewUrl=$('td.apply a').attr("href");
		
		var location = $(this).parent().siblings(".location").html(); 
		var college = $(this).parent().siblings(".college").html(); 
		var type = $(this).parent().siblings(".type").html(); 
		var time = $(this).parent().siblings(".time").html(); 
		var course = $(this).parent().siblings(".course").html(); 		
								
		
		var NewUrl = NewUrl + "&course=" + course + ", " + college + ", " + time;
		$('td.apply a').attr("href", NewUrl);
   });	
	
/*	$("td.apply a").click {
		// Construct the anchor link on the email button to include the
		// current URL and the h1 tag.
		var NewUrl="k-email-a-friend.html?curpage=" + (jQuery.url.attr("source"));
		var NewUrl= NewUrl + "&title=" + document.title;
		var NewUrl= NewUrl + "&header=" + $("h1").html();		

		$('a#email-icon').attr("href", NewUrl);
		
	 	};
*/


	}
);

