/**************
 * Jürgen Geuter (tante@the-gay-bar.com)
 * Javascript file for thurstoninsurance.com
 */
// crappy IE cannot swicth colors via CSS so we gotta use Javascript which is "le gay"

// mouseover
function m_in(element)
{
	element.style.backgroundColor="#2462d5";
}

// mouseout
function m_out(element){
	element.style.backgroundColor="#2910bf";
}

function show_privacy(){
	window.open("privacy.html","Privacy Statement","height=500px, width=500px, location=no, menubar=no, resizeable=yes");
}