// JavaScript Document

jQuery.noConflict();

jQuery(document).ready(function(){
						   
	jQuery('.contact-btn').live('click',function(){
		opencloseContact();						
		return false;
	});
	
	jQuery('#contact-area').live('mouseleave',function(){
		//opencloseContact();	
	});
	
	function opencloseContact(){
		jQuery('#contact-area').slideToggle();
	};
	
	jQuery('.actionDetails').live('click', function(){
		jQuery(this).siblings('.product-shop').slideToggle();
	});
	
	jQuery('.products-list').jcarousel();
	
	//jQuery('a.product-image').ocBox();
	
	jQuery('a.product-image').fancybox({
		'titleShow':false,							   
		'onComplete': function(){
			//product_zoom = new Product.Zoom('image', 'track', 'handle', 'zoom_in', 'zoom_out', 'track_hint');
			//console.log(product_zoom);
		}	
	});

	jQuery('a.image-lookbook').fancybox();	
	
	
});
