function getDiv(whichOne, whichTwo) {
	var divs =["one","two","three","four"];
	// hide all those divs :
	for(var i=0; i<divs.length; i++)
	document.getElementById(divs[i]).style.display = 'none';
	// reveal the right one
	document.getElementById(divs[whichOne]).style.display = 'block';
	document.getElementById(divs[whichTwo]).style.display = 'block';
}

function doClear(theText) {
     theText.style.color = '#a4a4a4';
     if (theText.value == theText.defaultValue) {
         theText.value = ""
     }
 }

var global= {

	init : function(){
		Cufon.replace('h2');
		Cufon.replace('h3');
	}
}

jQuery(document).ready(function() { global.init(); })