/**
 * Fancybox login
 */
jQuery().ready(function() {
	if (jQuery('li').find('a.login').length) {
		jQuery('li').find('a.login').fancybox({
			'width' : 260,
			'height' : 300,
			'titleShow' : false,
			'overlayShow' : false,
			'onComplete' : function() {
				jQuery('#user_login').focus();
			}
		});
	}
});

/**
 * preload
 */
function preload(arrayOfImages) {
    jQuery(arrayOfImages).each(function(){
        jQuery('<img/>')[0].src = this;
    });
}

/**
 * loginAlert
 */
function loginAlert() {
	alert('You must be logged in to access this content.');
}

