
				function callback() {
					setTimeout(function() {$( "#get-quote-opt" ).fadeOut('slow');}, 500);
					setTimeout(function() {$( "#get-quote-overlay" ).hide();}, 1000);
					 $("#homapage-get-quote").css('height',57);
					     
				};
		      $(function() {
				// set effect from select menu value
				var show = false;
				$( "#get-quote" ).mouseover(function() {
				   if (!show) {
				           show = true;
						   $("#homapage-get-quote").css('height',200);
					       $( "#get-quote-overlay" ).show('clip', '', 500 );
						   $( "#get-quote-opt" ).fadeIn();
						   
					 }
					  return false;
					
				});
				$("#homapage-get-quote").mouseleave(function(){
						 show = false;
			             callback();
					     return false;
					});
			});

