function setActiveTab(){
	if(/\/Command\/Smart-Ideas\/All-Smart-Ideas/.test(window.location.href)){
		$j('#gsn1').addClass("selected");
	}
	else if (/\/Command\/Products\//.test(window.location.href)){
		$j('#gsn2').addClass("selected");
	}
	else if (/\/Command\/Resources\/How-to-Use/.test(window.location.href)){
		$j('#gsn3').addClass("selected");
	}
	else if (/\/Command\/Support\/Where-to-Buy/.test(window.location.href)){
		$j('#gsn4').addClass("selected");
	}
	else if (/\/Command\/Resources\/Subscribe/.test(window.location.href)){
		$j('#gsn5').addClass("selected");
	}

}

$j(document).ready(function(){
	setActiveTab();
	$j('#gsn a').hover(
		function () {
    		$j(this).parent().addClass("hovergsn");
  		},
  		function () {
    		$j(this).parent().removeClass("hovergsn");
  		}
  	);
});