// JavaScript Document

jQuery.noConflict()
jQuery(document).ready(function(){
	jQuery("img.a").hover(
	function() {
		jQuery(this).stop().animate({"opacity": "0"}, 50);
	},
	function() {
		jQuery(this).stop().animate({"opacity": "1"}, 300);
	});
});
jQuery(function() {
	jQuery('a.lightbox').lightBox();
});
