// GALLERY ICON HOVER

$(document).ready(function(){

	$('ul.productGallery-small li a').hover(function(){
		
		$(this).find('span img').stop(true, true).fadeOut();
		
	}, function() {
	
		$(this).find('span img').stop(true, true).fadeIn();
	
	});

});

$(document).ready(function(){

	$('ul.SpecsUL-compact').hide();

	$('.specs-compact p a').click(function() {
		
		$('ul.SpecsUL-compact').stop(true, true).slideToggle('normal');
		
		if ($('ul.SpecsUL-compact').is(':visible')) {
			
			$(this).html('Hide Details');
			$('.specs-compact').css('height', '53px');
		
		} else {
			
			$(this).html('Show Details');
			$('.specs-compact').css('height', ' 40px');
		
		}
		
		return false;
	
	});

});


// COLORBOX IMAGE GROUPING GALLERY 1

$(document).ready(function(){

	$('a[rel="Gallery-1"]').colorbox({
	
	trasition: 'fade',
	speed: 500,
	current: "{current} of {total} DrumIt Five images"
	
	});

});

// COLORBOX IMAGE GROUPING GALLERY 2

$(document).ready(function(){

	$('a[rel="Gallery-2"]').colorbox({
	
	trasition: 'fade',
	speed: 500,
	current: "{current} of {total} DrumIt Five images"
	
	});

});

