$(document).ready(function(){

	/* add class to image viewer thumbnails */
	//$('div.list-products div.list-product:nth-child(3n+2)').addClass('shade-odd');

	/* add checkboard bg to product listing */
	var p = $('div.list-products').children('div.list-product');
	p.addClass('shade-odd');

	for(i=0;i<p.length;i++) {

		if((i+1) % 2 == 0) {
			$(p[i]).removeClass('shade-odd').addClass('shade-even');
			$(p[i+1]).removeClass('shade-odd').addClass('shade-even');
			i += 3;
		}
	}


	/* product slideshow */
	$('#image-viewer').cycle({
		fx:     'fade',
		speed:  'fast',
		timeout: 0,
		next:   '#image-next',
		prev:   '#image-previous',
		pager:  '#image-preview',
		before: imageViewerOnBefore,
		after:	imageViewerOnAfter,
    	pager:  '#nav',
    	pagerAnchorBuilder: function(idx, slide) {
    	   return '#image-preview li:eq(' + idx + ') a';
    	}

	});

	$('input[title!=""]').hint();

	/* highlight art-inventory menu item */

	//art-inventory
	//shop

	if($('ul.sub-menu a.current').text() == 'Art Inventory') {
		$('ul#main-menu li#shop').removeClass('current');
		$('ul#main-menu li#art-inventory').addClass('current');
	}

	$('tr.cart-product-row:nth-child("even")').addClass('even');

	/* customize site map */
	$('#sitemap table td img').attr('src', 'images/icons/folder.png');
});

 function imageViewerOnBefore() {

 }


 function imageViewerOnAfter() {
 	//$('#image-expand').attr.('href'($(this).find('span.product-image-url').text());
 	$('#image-expand').attr({href:$(this).find('span.product-image-url').text()});
 }

