// JavaScript Document


			// ---------------------------------------------
			// javascript for striped tables				
			// ---------------------------------------------
			
			$(document).ready(function( ) { // NB. wait till the document has loaded before executing this
				$('table.striped tr:even').addClass('even'); // ADD CSS CLASS to even row numbers (blue shade)
				var rows = $('table.striped tbody tr')

				rows.hover( 
					function() {
					  $(this).addClass('highlight');
					},
					function() {
					  $(this).removeClass('highlight');
					} 
				); // end hover NB. hover is a shortcut jquery method for replacing mouseover / mouseout events
	
			});
			// ---------------------------------------------
			// javascript for rollover linked cell
			// ---------------------------------------------			
			$(document).ready(function( ) { // NB. wait till the document has loaded before executing this
				
				var linkCell = $('table.striped .linkCell')			
			
				linkCell.hover( 
					function() {
					  $(this).addClass('highlightlinkCell');
					},
					function() {
					  $(this).removeClass('highlightlinkCell');
					} 
				); // end hover NB. hover is a shortcut jquery method for replacing mouseover / mouseout events	
				
			});
			
			
			// ---------------------------------------------
			// javascript for greybox
			// ---------------------------------------------
						
			$(document).ready(function() { // NB. wait till the document has loaded before executing this
			
			  var gbOptions = {
				gbWidth: 680,
				gbHeight: 400
			  };
			  $('a.comment').greybox(gbOptions);
			  
			});		

			// ---------------------------------------------
			// javascript for greybox
			// ---------------------------------------------
						
			$(document).ready(function() { // NB. wait till the document has loaded before executing this
			
			  var gbOptions = {
				gbWidth: 500,
				gbHeight: 450
			  };
			  $('.linkCell a').greybox(gbOptions);
			  
			});
			
			// ---------------------------------------------
			// ---------------------------------------------						


