if (!/android|iphone|ipod|series60|symbian|windows ce|blackberry/i.test(navigator.userAgent)) {
	jQuery(function($) {
		$("a[rel^='lightbox']").slimbox({
            resizeDuration: 100
            },
            function(el) {
                return [el.href, el.title + '<br>Press "Esc" to close window'];
            },
            function(el) {
                return (this == el) || ((this.rel.length > 8) && (this.rel == el.rel));
            }
        );
	});
}

