// JavaScript Document
$(document).ready(function(){
	$("img.a").hover(
	function() {
		$(this).stop().animate({"opacity": "0"}, 40);
	},
	function() {
		$(this).stop().animate({"opacity": ".9"}, 400);
	});
});
$(document).ready(function(){
	$('a[@rel*=lightbox]').lightBox(); // Select all links that contains lightbox in the attribute rel
});
