$(document).ready(function() {
  $('#menu-product-navigation').children('li.menu-item').hover(function(){
    $(this).find('ul').slideDown();
    // alert($(this).find('ul').attr('class'));
  }, function(){
    $(this).find('ul').hide();
  });
  
  var colorlistheight = $('.partlist').height();
  
  $('.colorshow').click(function(){
    var totalheight = $('.partlist').children('ul').height()+10;
    $('.partlist').animate({'height': totalheight});
    $('.colorshow').hide();
    $('.colorshowless').show();
  });
  
  $('.colorshowless').click(function(){
    $('.partlist').animate({'height': colorlistheight});
    $('.colorshowless').hide();
    $('.colorshow').show();
  });
  
  // Lightbox for Detailpics
  var dir = templateDir;
  $("#detailgallery a[rel=montana_details]").fancybox({
		'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'titlePosition' 	: 'over',
		'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {
			return '<span id="fancybox-title-over">Image ' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' &nbsp; ' + title : '') + '</span>';
		}
	});
	
	// Lightbox for Colorfinder
	$("a[title=colorfinderlink]").fancybox({
    'width': 930,
		'height': 620,
		'padding': 0,
		'overlayColor': '#222',
		'overlayOpacity': 0.85,
		'autoScale': false,
		'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'type'				: 'iframe'
	});
  // $('#detailgallery a').lightBox({
  //   imageLoading:      dir+'/images/lightbox/lightbox-ico-loading.gif',    // (string) Path and the name of the loading icon
  //    imageBtnPrev:     dir+'/images/lightbox/lightbox-btn-prev.gif',     // (string) Path and the name of the prev button image
  //    imageBtnNext:     dir+'/images/lightbox/lightbox-btn-next.gif',     // (string) Path and the name of the next button image
  //    imageBtnClose:    dir+'/images/lightbox/lightbox-btn-close.gif',    // (string) Path and the name of the close btn
  //    imageBlank:       dir+'/images/lightbox/lightbox-blank.gif'
  // });
  
});

