$(document).ready(function()
{
	$("a.gallery").fancybox({
		'overlayShow'			: false,
		'zoomSpeedIn'			: 600,
		'zoomSpeedOut'			: 500,
		'easingIn'				: 'easeOutBack',
		'easingOut'				: 'easeInBack',
		'titlePosition' 		: 'inside',
		'titleFormat'			: formatTitle
	});
	$("a.iframe").fancybox({
		'overlayShow'			: false,
		'zoomSpeedIn'			: 600,
		'zoomSpeedOut'			: 500,
		'easingIn'				: 'easeOutBack',
		'easingOut'				: 'easeInBack',
		'frameWidth'			: 900,
		'frameHeight'			: 850
	});
	
	$(".fadeMe").hover(
	function()
	{
		$(this).fadeTo('fast', 1);
	},
	function()
	{
		$(this).fadeTo('slow', 0.7);
	});

	$(".SelectedItem").hover(
	function()
	{
		var mynd = $(this).attr('rel').split(',');

		$(this).css({'background-image' : 'url('+mynd[0]+')', 'background-repeat' : 'no-repeat', 'background-position' : '0px 0px'});
	},
	function()
	{
		var mynd = $(this).attr('rel').split(',');

		$(this).css({'background-image' : 'url('+mynd[1]+')', 'background-repeat' : 'no-repeat', 'background-position' : '0px 0px'});
	});
	$(".Item").hover(
	function()
	{
		var mynd = $(this).attr('rel').split(',');

		$(this).css({'background-image' : 'url('+mynd[0]+')', 'background-repeat' : 'no-repeat', 'background-position' : '0px 0px'});
	},
	function()
	{
		var mynd = $(this).attr('rel').split(',');

		$(this).css({'background-image' : 'url('+mynd[1]+')', 'background-repeat' : 'no-repeat', 'background-position' : '0px 0px'});
	});
	//
	
});

function formatTitle(title, currentArray, currentIndex, currentOpts) 
{
    return '<div id="fancy-title">' + (title && title.length ? title : '' ) + 'Image ' + (currentIndex + 1) + ' of ' + currentArray.length + '</div>';
}
