$(window).load(function(){
	ShowLogo();
});

function ShowLogo()
{
	$(".tenyearlogo").css( {"visibility" : "visible"} );
}

function gotoService() {
	if (document.getElementById) {
		var obj = document.getElementById("serviceLoginList") 
			if ( obj ) {
				if ( obj.selectedIndex != -1 ) {
					var val = obj.options[obj.selectedIndex].value;
					if ( val ) {
						window.open(val, "_blank", "");
				}
			}
		}
	}
}

