﻿/*highlight*/
$(function(){
   var path = location.pathname.substring(1);
   if ( path )
     $('.nav a[href$="' + path + '"]').attr('class', 'current');
 });
 
 
/*Jewelry Photo Gallery*/
$(function() {
    $('#gallery').before('<ul id="nav">').cycle({
        fx:     'fade',
        speed:  '1000',
        timeout: 0,
        pager:  '#nav',
        pagerAnchorBuilder: function(idx, slide) {
            return '<li><a href="#"><img src="' + slide.src + '" width="40" height="40" /></a></li>';
        }
    });
});


