jQuery.noConflict();
jQuery(document).ready(function($) {
	$("#callLoginPopup").fancybox({
		'transitionIn'		: 'none',
		'transitionOut'		: 'none'
	});
	$("#callRegisterPopup").fancybox({
		'transitionIn'		: 'none',
		'transitionOut'		: 'none'
	});
	// if login failed, display the login fancybox
	if($('#login_error').length) {
		$("#callLoginPopup").trigger('click');
	}
	$("#homeCarousel").jcarousel({
		vertical: true,
		scroll: 2,
		buttonNextHTML: '<div><span></span></div>',
		buttonPrevHTML: '<div><span></span></div>'
	});
	$("#galleryCarousel").jcarousel({
		vertical: true,
		scroll: 2,
		buttonNextHTML: '<div><span></span></div>',
		buttonPrevHTML: '<div><span></span></div>'
	});
});
