/* Author:

*/

$(document).ready( function() {
    /*$("ul.accordion ul").parent("li").click(function() {
        if(false == $(this).children("ul").is(':visible')) {
            //$('.accordion ul').slideUp(300);
        }
        if (!($this).parent().parent("li").hasClass("active")) {
            $(this).children("ul").slideToggle(300);
        }
    });*/
    $("ul.accordion li.active ul").css('display','block');
    $("ul.accordion li.active").parent("ul").css('display','block');

    $("#home-checkout").live('click', function(){
        var content = $(this).html();
        if (content=="&nbsp;0 Artigos (0 €)") {
            alert("Só pode aceder ao carrinho de compras depois de adicionar um artigo.");
            return false;
        }
    });

    $('div.link').click(function() {
        var link = $(this).find('a').eq(0).attr('href');
        window.location = link; /*Go there! Only works with jquery 1.3 (due to the use of nearest. */
    }); //End Click
    $('li.link').click(function() {
        var link = $(this).find('a').eq(0).attr('href');
        window.location = link; /*Go there! Only works with jquery 1.3 (due to the use of nearest. */
    }); //End Click


});

