$(document).ready(function() {
	$('.stores-item').click(function () { 
		elm = $(this).parent().find('.store-address');
		$('.store-address').parent().removeClass('active');
		$('.store-address').each(function (index, item) {
			if ($(item).is(':visible')) {
				$(item).slideUp('slow');
			}
		});
		elm.parent().addClass('active');
		elm.slideDown(); 
		
		$('.store-detail').each(function () {
			$(this).fadeOut();
		});

		elm2 = elm.attr('id').replace(/address/g, 'store');
		$('#'+elm2).fadeIn();

		return false;
	});
	
	$('.store-detail').each(function (index, item) {
		$(item).css('margin-bottom', '300px');
		$(item).css('height', '700px');
		$(item).css('overflow', 'hidden');
	});
	
	$('.store-details').css('height', '700px');
	$('.store-details').css('overflow', 'hidden');
	
  $('.imageslider').cycle({
		fx: 'fade',
		timeout: 10000,
		speed: 3000
	});


//	window.setTimeout(function () {
//		$('.store-detail:not(:first)').each(function(index) {
//			$(this).hide();
//		});
//	}, 2000);

	$('.zoom').anythingZoomer({
		speedMultiplierX: 2000/1080,
		speedMultiplierY: 1200/700
	});	

	$('.product').productZoomer();	
	
});

