$(document).ready(function() { $(".productsimgbox").hover( function() { $(this).find(".productstextbox").fadeIn("fast"); $(this).find(".productstextbox").delay(0).animate({ top: '40%' },200); $(this).find(".productsimgbtn").delay(0).animate({ top: '0' },200); $(this).find(".productsimgblack").delay(0).animate({ backgroundColor: 'rgba(0,0,0,0.5)' },200); }, function () { $(this).find(".productstextbox").delay(0).animate({ top: '50%' },200); $(this).find(".productsimgbtn").delay(0).animate({ top: '120' },200); $(this).find(".productsimgblack").delay(0).animate({ backgroundColor: 'rgba(0,0,0,0.0)' },200); $(this).find(".productstextbox").fadeOut("fast"); } ); $(".servicesitem").hover( function() { $(this).find(".servicesblack").delay(0).animate({ backgroundColor: 'rgba(0,0,0,0.5)' },200); }, function () { $(this).find(".servicesblack").delay(0).animate({ backgroundColor: 'rgba(0,0,0,0.3)' },200); } ); $(".topsearchbtn").click(function(){ $(".searchinput").fadeToggle(); }); });