// JavaScript Document

/* 
   Script to hide the quick form for the quotations by default and toggle its display by clicking
   on the top link at the page 
*/

$(document).ready(function() {
	$('#main_quick_form').hide();
	$('#secondary_menu-inner').click( function() {
		$('#main_quick_form').toggle('slow');
	})
});
	
