// JavaScript Document

jQuery(document).ready(function(){
	    jQuery("._blank a").click(function(){
	        window.open(this.href);
	        return false;
	    });
	});

jQuery(document).ready(function(){
	    jQuery(".know-cost div a").click(function(){
	        jQuery(this).parent().parent().parent().find(".know-cost-form").toggle('fast');
			return false;
	    });
	});

jQuery(document).ready(function(){
	    jQuery(".know-cost-form p a.a-close").click(function(){
	        jQuery(this).parent().parent().hide('fast');
			return false;
	    });
	});


jQuery(document).ready(function(){
	    jQuery(".content-page :header:first-child").addClass("h-first-child");
	});

							

	

