$(document).ready(function(){
	var func2 = function(){
		$('#inq-bg3').fadeIn('slow');
		$('#inq-bg3').animate({marginRight:"237px"},800,'easeOutBack');
}
$('#inq').mouseover(function(){
	//$('body').css({overflow-x:"hidden"});
	$('#inq').animate({'marginBottom':"-40px"},600,'easeOutBack');
	$('#inq-bg').css({'width':"600px"});
	$('#inq-bg2').animate({'marginBottom':"0px"},600,'easeOutBack').animate({'right':"7px"},500,'easeOutBack');
	$('#inq-bg2').animate({'right':"7px"},500,'easeOutBack');
//	$('#inq-bg').animate({marginBottom:"1px"});

setTimeout(func2, 500);
	
	});
	
	
	$('#get_quote').click(function(){
	//$('body').css({overflow-x:"hidden"});
	$('#inq').animate({'marginBottom':"-40px"},600,'easeOutBack');
	$('#inq-bg').css({'width':"600px"});
	$('#inq-bg2').animate({'marginBottom':"0px"},600,'easeOutBack').animate({'right':"7px"},500,'easeOutBack');
	$('#inq-bg2').animate({'right':"7px"},500,'easeOutBack');
//	$('#inq-bg').animate({marginBottom:"1px"});

setTimeout(func2, 500);
	
	});
	
	$('.closing').click(function(){
		$('#inq-bg3').hide();
		$('#inq-bg3').animate({marginRight:"5px"});
		$('#inq-bg2').animate({'marginBottom':"-425px"},300,'easeInBack');
		setTimeout(clo, 300);
	});
var clo = function(){
		$('#inq').animate({'marginBottom':"0px"},500,'easeOutBack');
		$('#inq-bg').css({'width':"0px"});
}



$('.quick-links').click(function(){
	$('#quick-link-cats').show('fast');
	$('#quick-link-cats').animate({'width':'300px'},800,'easeOutBack');
});

$('.close').click(function(){
	$('#quick-link-cats').animate({'width':'0px'},800,'easeInBack');
	$('#quick-link-cats').hide('fast');
});

var showQuoteOuter = function(){
	$('#quoteOuter').animate({'marginLeft':'0%'},600,'easeOutBack');
}
var showQuoteInner = function(){
	$('#quoteInner').fadeIn('slow');
}
$('#quotation').click(function(){
	setTimeout(showQuoteOuter,800);
	$('#quoteBg').show('fast');
	setTimeout(showQuoteInner,1500);
});


var hideQuoteOuter = function(){
	$('#quoteOuter').animate({'marginLeft':'-100%'},400,'easeInBack');
}
var hideQuoteBg = function(){
	$('#quoteBg').hide('slow')
}
$('#closeQuote').click(function(){
	$('#quoteInner').fadeOut('fast');
	setTimeout(hideQuoteOuter,600);
	setTimeout(hideQuoteBg,1400);
});

});
