$('html').addClass('js');
$(function() {	// jQuery calls start here 
	// open external links in a new window
	$('a[rel=external]').click(function(e){
		open(this.href);
		e.preventDefault();
	});		
	// Table Striping
	$(".stripeMe tr").mouseover(function() {$(this).addClass("over");}).mouseout(function() {$(this).removeClass("over");});
	$(".stripeMe tr:odd").addClass("alt");
	// Top of Page add &#8593; to link
	$('a.toTop').prepend('&#8593;&nbsp;');
	// Set cookie for records display
	$('#Change').hide();	
		var COOKIE_NAME = 'rsPaging';
		$("#frmPaging").change(function() {
		var pagingValue = $('#paging').val();
		var date = new Date();
		date.setTime(date.getTime() + (3 * 24 * 60 * 60 * 1000));
		$.cookie(COOKIE_NAME, pagingValue, { path: '/', expires: date });
		this.submit();
		});	
	}
);
