// AUTOLOAD CODE BLOCK (MAY BE CHANGED OR REMOVED)
jQuery(function($) {
	
	var agent=navigator.userAgent.toLowerCase();
	var is_iphone = agent.indexOf('iphone');
	if (is_iphone != -1) {
		$("a[rel^='lightbox']").slimbox({
			overlayOpacity: 0,
			counterText: "<br>{x} of {y}"
		}, null, function(el) {
			return (this == el) || ((this.rel.length > 8) && (this.rel == el.rel));
		});
	/* Put custom options here */
	
	}
	else {
		$("a[rel^='lightbox']").slimbox({
			counterText: "<br>{x} of {y}"
		}, null, function(el) {
			return (this == el) || ((this.rel.length > 8) && (this.rel == el.rel));
		});
		
		
	}
	
	
	
	
	//MARK ADDED FOR IPHONE OVERLAY PROBLEM
	
	

});