$(document).ready(function(){	
	$('#photo-scrollable').scrollable({circular:false}); 
	$('#photo-scrollable').disableTextSelect();		

  	$("a[href$=.jpg],a[href$=.png],a[href$=.gif]").fancybox({
		'overlayShow': true,
		'transitionIn'	: 'elastic',
		'transitionOut'	: 'elastic',
		'easingIn'      : 'easeInOutBack',
		'easingOut'     : 'easeInBack',
		'autoscale'  : 'true',
		'hideOnOverlayClick':false,
   	'hideOnContentClick' : false	 
   });
	   
   	$(".items a").hover(function() {
        $(this).css({'opacity':'0.5'});
		$(this).css({'filter':'alpha(opacity=70)'});
		} , function() {
		  $(this).css({'opacity':'1'});
		  $(this).css({'filter':'alpha(opacity=100)'});  
	}); 
});

