function gup( name )
	{
		name = name.replace(/[\[]/,"\\\[").replace(/[\]]/,"\\\]");
		var regexS = "[\\?&]"+name+"=([^&#]*)";
		var regex = new RegExp( regexS );
		var results = regex.exec( window.location.href );
		if( results == null )
			return "";
		else
			return results[1];
		}
	
	$(document).ready(function(){
		var verifySW=gup('verify');
		if (verifySW==1){
			alert("Your email has been verified");
		}
	});

function showhideItem(cat_id, status){
	if(status == "hide"){
		document.getElementById("div_" + cat_id).style.display = "none";
		document.getElementById("show_" + cat_id).style.display = "";
		document.getElementById("hide_" + cat_id).style.display = "none";
	}
	if(status == "show"){
		document.getElementById("div_" + cat_id).style.display = "";
		document.getElementById("show_" + cat_id).style.display = "none";
		document.getElementById("hide_" + cat_id).style.display = "";
	}};

function overBannerAll(mode,id) 
{ 
	//nothing to do
}   
