$().ready(function(){
				   
  $("a.star img").hover(
	  function () {$(this).addClass("select");},
	  function () {$(this).removeClass("select");}
	);
	
	
	$("a#single_1").fancybox({
	'zoomOpacity'			: true,
	'overlayShow'			: false,
	'zoomSpeedIn'			: 500,
	'zoomSpeedOut'			: 500
	});
	
	$("a.a_menu_img").fancybox({
	'zoomOpacity'			: true,
	'overlayShow'			: false,
	'zoomSpeedIn'			: 500,
	'zoomSpeedOut'			: 500
	});
	
	
	
	
	$("a[rel=img_group]").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>';
				}
			});
	
	
	//screenshotPreview();
	
	
});

