$(".services").hover(function(){$(this).find(".service_tag").animate({top:"35%"},300);$(this).find(".description").animate({opacity:"1"},300);$(this).find(".red-cover").animate({opacity:"0.5"},300);console.log("hovered in")},function(){$(this).find(".service_tag").animate({top:"50%"},300);$(this).find(".description").animate({opacity:"0"},300);$(this).find(".red-cover").animate({opacity:"0"},300);console.log("hovered out")});$("#type").change(function(){$(".contact_info p").hide();$(".info-box").hide();$(".contact_submit").hide();var n=$(this).val();n!=""&&($(".info-box").show(),$(".contact_submit").show());$(".contact_info").find("[data-which='"+n+"']").show()})