// JavaScript Document

$(document).ready(function() {
  $('#menu li').last().hide();
  $('#menu2 li').last().hide();
  
  $(".thumb").css("opacity", "0.7");
 
  $('.thumb').hover(
	  function() {
	  $(this).stop().animate({"opacity": "1"});
	  },
	  function() {
	  $(this).stop().animate({"opacity": "0.7"});
	  });
  
});

  	


function formatTitle(title, currentArray, currentIndex, currentOpts) {
    return '<div id="tip7-title"><span><a href="javascript:;" onclick="$.fancybox.close();"><img src="/data/closelabel.gif" /></a></span>' + (title && title.length ? '<b>' + title + '</b>' : '' ) + 'Image ' + (currentIndex + 1) + ' of ' + currentArray.length + '</div>';
}

$(document).ready(function() {
	$("a.gallery").fancybox({
		'transitionIn'	:	'elastic',
		'transitionOut'	:	'elastic',
		'opacity'		:	'true',
		'autoscale'			: 'true',
		'titleShow'		:	'true',
		'speedIn'		:	600, 
		'speedOut'		:	200, 
		'overlayShow'	:	true,
		'titlePosition'		:'over'
	});
});

$(document).ready(function() {
		$('.show').show();					   
});
