$(document).ready(function() {
  $('#single-product .colours a').click(function() {
	  var styleId = $(this).attr('id').split('_')[1];
	  $('.product-medium').css('display','none');
	  $('.view-larger').hide();
	  // display it and fetch title
	  $('#view-larger_'+styleId).show();
	  var title = $('#product-medium_'+styleId).css('display','block').attr('title');

	  $('#product-style-title').html(title);
	  return false;
	  });
	var settings = {
            imageLoading: URL_CMSROOT+'themes/cottonon/images/lightbox/loading.gif',
            imageBtnPrev: URL_CMSROOT+'themes/cottonon/images/lightbox/prev.png',
            imageBtnNext: URL_CMSROOT+'themes/cottonon/images/lightbox/next.png',
            imageBtnClose: URL_CMSROOT+'themes/cottonon/images/lightbox/close.png',
            imageBlank: URL_CMSROOT+'themes/cottonon/images/lightbox/lightbox-blank.gif',
            imageBtnBottomPrev: URL_CMSROOT+'themes/cottonon/images/lightbox/btm_prev.gif',
            imageBtnBottomNext: URL_CMSROOT+'themes/cottonon/images/lightbox/btm_next.gif',
            imageBtnPlay: URL_CMSROOT+'themes/cottonon/images/lightbox/start.png',
            imageBtnStop: URL_CMSROOT+'themes/cottonon/images/lightbox/pause.png'
	};
	$('.view-larger a').lightBox(settings);
});
