﻿$(document).ready(function(){

	$('a[rel|="lightbox"]').fancybox({'titleShow': false}).attr("title", "");

	$('a[rel|="lightbox"]').mouseover(function(){
		$(this).children("img").animate({"margin-top": "-10px"}, 100);
	});
	
	$('a[rel|="lightbox"]').mouseout(function(){
		$(this).children("img").animate({"margin-top": "0px"}, 300);
	});

	
});
