// JavaScript Document
jQuery(document).ready(function(){

	jQuery('.cloud-zoom-gallery').click(function(e){
			jQuery('#full_size_img').attr('href',jQuery(this).attr('href'));
		});
		
	jQuery(".fancybox").fancybox({
		'hideOnContentClick': true,
		'overlayColor': '#000' 
		});	

	jQuery("#error_msg").fancybox({
		'hideOnContentClick': false,
		'autoScale'		: true,
		'width'		: 350,
		'height'		: 200
		});	
		
		if(jQuery('#notify').text()){
			jQuery('#error_msg').trigger('click');
		}
		
    jQuery('#mycarousel').jcarousel({
        vertical: true,
        scroll: 2
    });
    
    jQuery('#mycarousel_horizontal').jcarousel({
        scroll: 1
    });    

	jQuery(".l_fullsize").fancybox({
			type	: 'image',
			autoScale     	: true,
			transitionIn		: 'fade',
			transitionOut		: 'fade',
			overlayOpacity		:	0.6,
			padding: 0,
			titleShow: false,
			overlayColor: '#000',
			centerOnScroll: true			
	});
	
		jQuery(".styling_ideas").fancybox({
			type	: 'image',
			autoScale     	: true,
			transitionIn		: 'fade',
			transitionOut		: 'fade',
			overlayOpacity		:	0.6,
			padding: 0,
			titleShow: true,
			overlayColor: '#000',
			centerOnScroll: true			
	});	
	

	
});

