/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */


function initShop () {
    $('button').unbind().bind('click', function () {
        
        if ($(this).attr('href') != '') {
            History.pushState(null, null, $(this).attr('href'));
        }
    });    
    $('.kategorie p')
    .unbind().bind('mouseenter', function() {
            $(this).stop().animate({ color: "#fff" }, 400);
    })
    .unbind().bind('mouseleave', function() {
                $(this).stop().animate({ color: "#737373" }, 400);
    });
}
