/* jquery dropdown for categories */
$(document).ready(function(){
	var height = (($("#category-dropdown li").children().length)+1)*28;
    $("#category-dropdown li").mouseover(function(){
        $(this).stop().animate({height:height},{queue:false, duration:500, easing: 'easeOutQuad'})
    });

    $("#category-dropdown li").mouseout(function(){
        $(this).stop().animate({height:'48px'},{queue:false, duration:500, easing: 'easeOutQuad'})
    });
});