//IMAGE ROTATION
$(document).ready(function(){
var rand_num = Math.ceil(Math.random()*3);
var img = "/images/photo"+rand_num+".jpg";
 $("#header").append('<img src='+img+' height="100" width="600" />');
 });


//EXIT LINK MARKING
$(document).ready(function(){
	$("#mainContent a[@href*=http://]").not(".noIcon").attr({title: "This link takes you to an external website."}).attr({target: "_blank"}).append("<a href=/'this().attr(href)'/><img src='http://www.chand.org/images/external.gif' alt='This link takes you to an external website.' width='15' height='11' /></a>");
	$("#mainContent a[@href*=https://]").not(".noIcon").attr({title: "This link takes you to an external website."}).attr({target: "_blank"}).append("<a href=/'this().attr(href)'/><img src='http://www.chand.org/images/external.gif' alt='This link takes you to an external website.' width='15' height='11' /></a>");
	});
//PDF LINK MARKING
$(document).ready(function(){
	$("a[@href$=.pdf]").not(".noIcon").attr({title: "This link opens a PDF document."}).append("<a href=/'this().attr(href)'/><img src='http://www.chand.org/images/pdf.gif' alt='This link opens a PDF document.' width='27' height='10' /></a>");
	});
//DOC LINK MARKING
$(document).ready(function(){
	$("a[@href$=.doc]").not(".noIcon").attr({title: "This link opens a Word document."}).append("<a href=/'this().attr(href)'/><img src='http://www.chand.org/images/doc.gif' alt='This link opens a Word document.' width='27' height='10' /></a>");
	});
//XLS LINK MARKING
$(document).ready(function(){
	$("a[@href$=.xls]").not(".noIcon").attr({title: "This link opens a Excel document."}).append("<a href=/'this().attr(href)'/><img src='http://www.chand.org/images/xls.gif' alt='This link opens a Excel document.' width='27' height='10' /></a>");
	});

//TABLE STRIPING
$(document).ready(function(){
	$(".tableStripe tr:even").addClass("even");
	$(".tableStripe tr").hover(function(){
		$(this).addClass("tableOver")
	  }, function() {
		$(this).removeClass("tableOver")
		});
	});