// THE FANCYBOX PLUGIN INITALISATION
jQuery(".fancybox").fancybox();
$(".fancybox")
.attr('rel', 'gallery')
.fancybox({
beforeShow: function () {
if (this.title) {
var query = $(this.element).attr('alt');
var url_1 = '<?php echo site_url(); ?>/review/'+query;
var url_2 = '<?php echo get_stylesheet_directory_uri(); ?>/love.php'+query;
var url_3 = '<?php echo site_url(); ?>/photographer/'+query+'&category=0';
this.title += '<br />';
this.title += '<a onclick="window.open(\''+url_1+'\',\'_blank\',\'scrollbars=yes, width=450, height=350\');return false;" class="commentButton"></a>';
this.title += ' ';
this.title += '<iframe src="#" name="iframe_a" style="display:none;"></iframe><a class="likeButton" href="'+url_2+'" target="iframe_a"></a>';
this.title += ' ';
this.title += '<a href="'+url_3+'" class="photographerButton"></a>';
this.title += ' ';
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; margin-top:10px;" allowTransparency="true"></iframe>';
}
},
helpers : {
title : {
type: 'inside'
}
}
});