
$(document).ready(function(){

	$(".menu").each(function(i){
  		$(this).find("li:first").addClass("first");
	});

	$("#button_faq a").click(function(){
		$(this).parent("#button_faq").hide();
		$('#hide_form').slideDown();
		return false;
	});

	if ($("a.fancy").length) {
    $("a.fancy").fancybox({
        overlayShow: true,
        overlayOpacity: 0.5,
        zoomSpeedIn: 1500,
    	zoomSpeedOut:600
    });
    }

    var screen_f = $("#footer").height();
    if (screen_f>67) {
        $("#footer").css({"margin-top" : -screen_f + "px"});
        $("#padding_bot").css({"padding-bottom" : 90 + (screen_f-67) + "px"});
    }

});


