var $j = jQuery.noConflict();

$j(document).ready(function($) {

function formatURL(url) {
	var strURL = String(url);
	var urlArr = strURL.split('?url=');
	return urlArr[1];
}

function formatTitle(title, currentArray, currentIndex, currentOpts) {
    return '<div id="fancybox-title-over"><script src="http:\/\/connect.facebook.net\/en_US\/all.js#xfbml=1"><\/script><fb:like href="' + formatURL(currentArray[currentIndex]) +  '" layout="button_count" show_faces="false" width="50"></fb:like><span style="color:\#fff">' + (title && title.length ? title : '' ) + '</span></div>';
}

	$("a[rel=fancyImage]").fancybox({
		'overlayColor': '#ccc',
		'overlayOpacity': 0.7,
		'titlePosition': 'over',
		'titleFormat': formatTitle,

	}); 

	$("a[rel=fancyVideo]").fancybox({                 
		'overlayColor': '#ccc',
		'overlayOpacity': 0.7, 
		'overlayShow': true,
		'width': 800,
		'height': 600,
		'scrolling': 'no',
		'titleShow'     : true,
		'transitionIn'  : 'elastic',
		'transitionOut' : 'elastic',
		'type' : 'iframe',
	});


});


