$(document).ready(function() {
	var settings = {
            imageLoading: URL_CMSROOT+'themes/Tbar/images/lightbox/loading.gif',
            imageBtnPrev: URL_CMSROOT+'themes/Tbar/images/lightbox/prev.png',
            imageBtnNext: URL_CMSROOT+'themes/Tbar/images/lightbox/next.png',
            imageBtnClose: URL_CMSROOT+'themes/Tbar/images/lightbox/close.png',
            imageBlank: URL_CMSROOT+'themes/Tbar/images/lightbox/lightbox-blank.gif',
            imageBtnBottomPrev: URL_CMSROOT+'themes/Tbar/images/lightbox/btm_prev.gif',
            imageBtnBottomNext: URL_CMSROOT+'themes/Tbar/images/lightbox/btm_next.gif',
            imageBtnPlay: URL_CMSROOT+'themes/Tbar/images/lightbox/start.png',
            imageBtnStop: URL_CMSROOT+'themes/Tbar/images/lightbox/pause.png'
	};

	$('.view-larger a').lightBox(settings);

	$('a.product-expand').click(function() {
		var p = $(this).closest('div');
		if ($('.sh-expand', p).is(':visible')) {
			$('.sh-expand', p).slideUp();
			$(this).html('+');
		} else {
			$(this).html('-');
			$('.sh-expand', p).slideDown();
		}
		return false;
	});
});

