function getFormByName(name)
{
	document.forms
	
	
}


$(document).ready(function() {

	if(document.getElementById("quickquote")!=null)
	{
		document.bookie = new bookFormHandler(document.getElementById("quickquote"));
		document.bookie.display();
		
		
	}
		
	$("span#slogan-part-1").fadeIn(1500);
	$(this).oneTime(750, function() {
		$("span#slogan-part-2").fadeIn(1500);
	});
	var tiplinks = $("#qqform .tiplink");

	// the divs that contract and expand verticaly are smallcontents

	// mouseenter event, associated to each kwick
	tiplinks.bind("mouseenter", function() {
			var index = tiplinks.index(this);
			$("div#tip"+index).fadeIn(200);
	});
	
	tiplinks.bind("mouseleave", function() {
			var index = tiplinks.index(this);
			$("div#tip"+index).fadeOut(100);
	});
	
	
			//		
});