$(function () {
    $('#slider-posts-ul').carouFredSel({
        items: {
            visible: 5,     //  automaticallu calculated
            start: 0,
            width: null,     //  automatically calculated
            height: null    //  automatically calculated
        },
        scroll: {
            items: 1,
            duration: 1000
           },
        auto: {
            pauseDuration: 3000,
            pauseOnHover: true
        },
        prev : {   
         button  : "#foo_prev",
          key     : "left"
        },
        next : {
            button  : "#foo_next",
          key     : "right"
        }
//        pagination  : "#foo_pag"
    });
});

$(function () {
	$('#access li').mouseover(function() {
		$('#menu_default').hide();
	}).mouseout(function(){
    $('#menu_default').show();
  });;
});
