// AddThis rollover
jQuery(function(){
	jQuery(".custom_hover").hover(showAddthis, showAddthis);
	jQuery(".hover_menu").hover(showAddthis, showAddthis);
});

function showAddthis(){
	var currentid = $(this).parent().attr('id');
	jQuery('#'+currentid+' .hover_menu').toggleClass('show');
}

// highlight current category on single.php and is_home()
function cssChanges(catid) {
	jQuery('.cat-item-'+catid).addClass('current-cat');
}
