﻿$( document ).ready( function() {
	// Attaching onclick event to Personal tab
	if (window.attachEvent) {
		document.getElementById("tabs-personal").attachEvent("onclick",personalClick);
	} else if (window.addEventListener) {
		document.getElementById("tabs-personal").setAttribute("onclick","personalClick()");
	}
});

// IE6 hover flicker fix
try {
  document.execCommand("BackgroundImageCache", false, true);
} catch(err) {}

// Onclick event for Personal tab
// This function creates a temporary cookie to indicate that the Personal tab has been clicked
function personalClick() {
	document.cookie = "PersonalClick=true; path=/";;
}

