
jQuery(document).ready(function(){

	// --------------------------------------------------------
	// Get a Quote Button
	// --------------------------------------------------------
	jQuery("#get-quote-button li").hover(
		function(){
			jQuery(this).children("ul:hidden").slideDown("fast");
		}, function() {
			jQuery(this).children("ul:visible").slideUp("fast");
		}
	);
	if (document.all) {
		jQuery("#get-quote-button li").hoverClass("over");
	}
	jQuery("#get-quote-button ul").show().hide();

	// --------------------------------------------------------
	// Navigation Button
	// --------------------------------------------------------
	jQuery("#navbar li").hover(
		function(){
			jQuery(this).children("ul:hidden").slideDown("fast");
		}, function() {
			jQuery(this).children("ul:visible").slideUp("fast");
		}
	);
	if (document.all) {
		jQuery("#navbar li").hoverClass("over");
	}
	jQuery("#navbar ul").show().hide();

});

jQuery.fn.hoverClass = function(c) {
	return this.each(function(){
		jQuery(this).hover(
			function() { jQuery(this).addClass(c); },
			function() { jQuery(this).removeClass(c); }
		);
	});
};
