
/**
 * This is a additional piece of script which adds mouse over events to telstra global link tabs which
 * in turn add an extra class when the mouse is over the tabs. This is then used by IE6 css to better control
 * those tabs. This script uses Jquery to do the work.
 *
 * THIS IS FOR IE6 ONLY.
 */
 
 //Make jQuery works with other javascript framework (i.e. Prototype)
jQuery.noConflict();
 
jQuery(document).ready(function($) {
	
	var globalLinks = $('ul.globallinks')
	
	$('ul.globallinks').hover(function() {
		$('ul.globallinks').addClass("sfhover");
	},
	function() {
		$('ul.globallinks').removeClass("sfhover");
	});
}
);
