// JavaScript Document

$(document).ready(function() {
	$("img.a").css({ opacity: 0 });
});

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

$(document).ready(function() {
	$("#themenu li").css({ opacity: 0.75 });
});

jQuery(document).ready(function(){
	jQuery("#themenu li").hover(
	function() {
		jQuery(this).stop().animate({"opacity": "1"}, 50);
	},
	function() {
		jQuery(this).stop().animate({"opacity": "0.75"}, 300);
	});
});

jQuery(document).ready(function(){
	jQuery('a[@rel*=lightbox]').lightBox(); // Select all links that contains lightbox in the attribute rel
});



