/* == Theme JavaScript == */ jQuery(document).ready(function() { /* Dropdown Menu */ jQuery('.primary-menu ul li').hover(function() { jQuery(this).find('ul:first').css({visibility:"visible",display:"none"}).hide().fadeIn(300); }, function() { jQuery(this).find('ul:first').fadeOut(300); }); jQuery('.primary-menu li').has('ul').children('a').addClass('has-bottom-child'); jQuery('.primary-menu li li').has('ul').children('a').removeClass('has-bottom-child').addClass('has-right-child'); /* Social Profile Hover */ jQuery('.bizwiz-social-profile').hover(function() { var currid = jQuery(this).attr("id"); jQuery('.bizwiz-social-profile[id!='+ currid +']').stop().fadeTo(200,0.3); },function() { jQuery('.bizwiz-social-profile').stop().fadeTo(200,1.0); }); jQuery(window).bind('scroll', function(){ if(jQuery(this).scrollTop() > 200) { jQuery("#scrollup").fadeIn(400); } else { jQuery('#scrollup').hide(); } }); jQuery('#scrollup').click(function() { jQuery('html,body').animate({scrollTop:jQuery('#header').offset().top}, 500); return false; }); /* Last child fix for ie8 and lower */ jQuery('.entry-content *:last-child').addClass('last'); jQuery('.comment-content *:last-child').addClass('last'); jQuery('li:last-child').addClass('last'); });