
	function showOptions(choice)	{

		if (choice == 'Bands')	{
			Effect.BlindDown(document.getElementById('bandOptions'));
		}	else	{
			Effect.BlindUp(document.getElementById('bandOptions'));
		}
		
	}

	function checkMatch(txt1,txt2,msg)	{

		if (txt1 != txt2)	{
			alert(msg);
			return false;
		}

	}


	function passwordRequest()	{

		var yesno = confirm("Are you sure you'd like your password mailed to the email account(s) associated with this listing?");
		return yesno;

	}


  
	var myrules = {
				
		'ul.md_Genres a' : function(element){

			element.onmouseover = function(){
				this.className = "mouseover";
			}
			element.onmouseout = function(){
				this.className = "";
			}
			
		},

		'ul.column a' : function(element){

			element.onmouseover = function(){
				this.className = "mouseover";
			}
			element.onmouseout = function(){
				this.className = "";
			}
			
		}
	};
	
	Behaviour.register(myrules);
