var hrefNode;


/**
 *	RollOver - once a client rolls over a button with his mouse,
 *	it's content and style need to change to turn it into a button
 *	for the saloon contact page.
**/
function rollOver (source) {
	source.className		 	= 'itemButtonOnline';
	source.getElementsByTagName('a')[0].innerHTML = 'Attendeer je kapsalon';
}


/**
 *	On roll out, chance the class and content of the hovered button back to
 *	normal.
**/
function rollOut (source) {
	source.getElementsByTagName('a')[0].innerHTML = "Helaas nog niet online";
	source.className		 = 'itemButtonOffline';
}