$(function () {
	$('a.preview img').hover(function() {
		$(this).fadeTo("fast", 0.8);
	}, function() {
		$(this).fadeTo("fast", 1);
	});
});

$(function() {          
	$("img").lazyload({
		placeholder : "img/grey.gif",
		effect      : "fadeIn"
	});
});


$(document).ready(function(){
//$('.gallery a').addClass('pirobox');
$().piroBox({
      my_speed: 80, //animation speed
      bg_alpha: 0.3, //background opacity
      slideShow : 'true', // true == slideshow on, false == slideshow off
      slideSpeed : 3, //slideshow
      close_all : '.piro_close' // add class .piro_overlay(with comma)if you want overlay click close piroBox
      });
});

