$(".fancybox-button")
.attr('rel', 'gallery')
.fancybox({
beforeShow: function () {
           if (this.title) {
               // New line
               this.title += '<br />';
         
                // Add tweet button
                this.title += '<a href="https://twitter.com/share" class="twitter-share-button" data-via="photocliper" data-count="none" data-url="' + this.href + '">Tweet</a> ';
                // Add FaceBook like button
                this.title += '<iframe src="//www.facebook.com/plugins/like.php?href=' + this.href + '&layout=button_count&show_faces=true&width=500&action=like&font&colorscheme=light&height=23" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:110px; height:23px;" allowTransparency="true"></iframe>';
                // Add Pinterest button
				this.title += '<a href="http://pinterest.com/pin/create/button/?url=' + this.href + '&media=' + this.href + '&description=Beach Resort Photoclip - www.photoclip.net" class="pin-it-button" count-layout="horizontal"><img border="0" src="//assets.pinterest.com/images/PinExt.png" title="Pin It" /></a> ';
           }
       },
       afterShow: function() {
            // Render tweet button
           twttr.widgets.load();
       },
	prevEffect		: 'none',
	nextEffect		: 'none',
	closeBtn		: false,
	helpers		: { 
		title	: { type: 'outside' },
		buttons	: { position : 'bottom' }
	}
});