$(document).ready(function() {

if (!/android|iphone|ipod|series60|symbian|windows ce|blackberry/i.test(navigator.userAgent)) {
    $("a.lonebox").fancybox();
	
$("a.videobox").click(function() {
$.fancybox({
'padding'       : 10,
'autoScale'     : false,
'transitionIn'  : 'none',
'transitionOut' : 'none',
'title'         : this.title,
'width'         : 750,
'height'        : 422,
'href'          : this.href.replace(new RegExp("watch\\?v=", "i"), 'v/'),
'type'          : 'swf',
'swf'           : {
'wmode'             : 'transparent',
'allowfullscreen'   : 'true'
            }
});

return false;
});
		  
    $("a.lightbox").fancybox({  
        'transitionIn'          : 'none',  
        'transitionOut'          : 'none',  
        'titlePosition'      : 'over',  
        'titleFormat'          : function(title, currentArray, currentIndex, currentOpts) {  
            return '<span id="fancybox-title-over">Image ' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' &nbsp; ' + title : '') + '</span>';
        }
    });
}
});
