jQuery.noConflict();
jQuery(document).ready(function(){
        jQuery(".pic_area .bottom_curve ul li a").mouseover(function(){
            jQuery(this).children('.pic_content').show()
        });
        jQuery(".pic_area .bottom_curve ul li a").mouseout(function(){
            jQuery(this).children('.pic_content').hide()
        });
    }
);
