// JQuery Functions
jQuery(document).ready(function($) {

//Columns
$('.features').makeacolumnlists({cols: 2, colWidth: 300, equalHeight:false});
$('.special').makeacolumnlists({cols: 3, colWidth: 190, equalHeight:false});

//FancyBox
$("a[rel=gallery]").fancybox({
				'type' : 'image',
				'transitionIn'		: 'none',
				'transitionOut'		: 'none',
				'titlePosition' 	: 'over',
				'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {
					return '<span id="fancybox-title-over">'+ (title.length ? '  ' + title : '') + '</span>';
	            }
			});
});
