﻿jQuery.noConflict();
jQuery(document).ready(function() {						
//Function for the Inner Fade News Ticker
	jQuery('#newsticker').innerfade({
						animationtype: 'fade',
						speed: 700,
						timeout: 4000,
						type: 'sequence',
						containerheight: '1.5em'
		});
//Function for the faces squares hover. This will display the title from the a link in the LinksContents DIV.
	var newTitle; 
	//jQuery("div.LinkContents").hide(); 
		jQuery("td.FacesSquares a").hoverIntent(function(){ 
		//mouseover stuff 
		newTitle = jQuery(this).attr("title"); 
		jQuery("div.LinkContents").text(newTitle).fadeIn(); 
		},function(){ 
		//mouseout stuff 
		jQuery("div.LinkContents").fadeOut('fast'); 
		}); 
	}); 
//Function for the JumpMenu
	function MM_jumpMenu(targ,selObj,restore){ //v3.0
		  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
		  if (restore) selObj.selectedIndex=0;
	}