// nav

var $nav = $('#nav'),
    $catNav = $('#cat_nav');

$('#wrapper').hover(
    function() {
        $nav.stop(true, true).slideDown(300);
        $catNav.css({
            backgroundColor: '#6bc99e',
            color: '#2d2d2d'
        });
    }, function() {
        $nav.stop(true, true).slideUp(300);
        $catNav.css({
            backgroundColor: '#2d2d2d',
            color: '#e8e8e8'
        });
});

// ios hack

$(document).click(function() {
	$nav.stop(true, true).slideUp(300);
});

// removes border bottom from last list element
$("ul li:last-child").css({
    border: 'none'
});

// play / pause toggle 

$("#buttons .pp").click(function() {
    $(this).text($(this).text() == 'play' ? 'pause' : 'play'); // <- HERE
});
 
