$(document).ready(function () {
	$(".getquote").click(function() {
		$('#flash_header').attr("style",'position:absolute;z-index:-1');
		$('#quotepop').modal({
			onClose: modalClose
		});
	});
		 $('#getquoteForm').ajaxForm({ 
        target: '#getquoteForm #response', 
        success: function() { $('#response').fadeIn('slow'); },
        beforeSubmit: function() { $('#response').show(); }
    }); 
    
    
});
function modalClose (dialog) {
	$.modal.close()
	$('#flash_header').attr("style",'position:absolute;z-index:1');
}
