jQuery.noConflict();

jQuery('document').ready(function() {
	jQuery('#product-gallery ul.more-views li a').click(function() {
		var imgSrc = jQuery(this).attr('href');
		var imgAlt = jQuery(this).attr('title');
		var img = new Image();

		jQuery(img).hide();

		jQuery('#product-image').height(jQuery('#product-image img').height());

		jQuery('#product-image').addClass('loading').find('img').fadeOut('normal', function() {	
			jQuery(img).load(function() {
				jQuery('#product-image').animate({height: img.height}).removeClass('loading');
	
				jQuery(this).appendTo('#product-image').fadeIn();
			}).attr({
				src: imgSrc,
				alt: imgAlt,
				title: imgAlt
			});
	
			jQuery('#product-image').empty();
		});
	
		return false;
	});
});

jQuery(document).ready(function(){
	jQuery('#main .accordion .head').click(function() {
		$(this).next().toggle('slow');
		return false;
	}).next().hide();
});