// Active Tabs
$(function() {
    var pathname = location.pathname;
    var highlight;

    if(pathname == "/")
        highlight = $('nav > ul > li:first > a:first');
    else {
    	var pathArray = window.location.pathname.split( '/' );
    	var secondLevelLocation = pathArray[1];

        if (secondLevelLocation)
            highlight = $('nav > ul > li a[href$="/' + secondLevelLocation + '/"]');
    }
    highlight.addClass('active');
});



$(document).ready(function() {
    $('#features').cycle({
        fx: 'fade',
        speed: 3500
    });

    $(".more_link").click(function (e) {
      $(this).siblings(".more_info").slideToggle("slow");
      e.preventDefault();
    });

	$('.product .enlarge').fancyZoom({scaleImg: true, closeOnClick: true});


});

