window.addEvent('domready', function(){
	/* Tips 1 */
	var Tips1 = new Tips($$('.Tips1'));

}); 
























// clearing  inputs on focus
function doClear(theText) {
	if (theText.value == theText.defaultValue) {
		theText.value = "";
	} 
}

//replace input value with default on blur
function doReset(theText) {
	if (theText.value == "") {
		theText.value = theText.defaultValue;
	}
}

//function that class flash
function show(tempBol) {
    getFlashMovieObject("cultureVideo").showControls(tempBol);
}
//function that ID's the flash movie for the javascript to call
function getFlashMovieObject(movieName)	{
    if (window.document[movieName]) {
    	return window.document[movieName];
    }
    if (navigator.appName.indexOf("Microsoft Internet")==-1) {
    	if (document.embeds && document.embeds[movieName])
      	return document.embeds[movieName]; 
    } else /* if (navigator.appName.indexOf("Microsoft Internet")!=-1) */ {
    	return document.getElementById(movieName);
    } 	
}





