// Open section based on user selection - Paul West 2008
function selectProduct(form){
	var thisProduct = form.product.value;
	if (thisProduct !== ""){
		url = "http://www.totallymoney.com/" +thisProduct+ "/";
	}
	window.open(url,target='_self');
}


// Open close extra copy script using jQuery by  Paul West 2008
$(document).ready(function(){

	$("div.box a.more").click(function(){
		if (document.getElementById("info"+this.id).style.display == 'none'){
		$(this).text("<< Less");
		$("div.box div#info"+this.id+":hidden").slideDown({duration: 1000, easing: 'easeOutElastic'});
		return false;
		} else {
		$(this).text(">> More");
		$("div.box div#info"+this.id+":visible").slideUp({duration: 333, easing: 'easeOutExpo'});
		return false;
		}
	});

});