$(document).ready(function() {
						   
    $('a.new-window').click(function(){
        window.open(this.href);
        return false;
    });
	
    $('a.new-popup').click(function(){
        return popup(this, 'RM Winery > Request to Join Wine  Club');
    });
	
	$("a[rel=gallery]").fancybox({
		'overlayOpacity'	: 0.7,
		'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'titlePosition' 	: 'over',
		'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {
			return '<span id="fancybox-title-over">' + (title.length ? ' &nbsp; ' + title : '') + '</span>';
		}
	});
	
});

