// JavaScript Document

	$(document).ready(function() {
		$(".gallery-images img").click(function() {
			var id = $(this).attr('id');
			$(".gallery-image").stop(true, true).fadeOut(800,function(){
				$(this).css({
					"background":"url(../images/gallery/img"+id+".jpg) no-repeat 0 0",
					"z-index":"0"
				})
			}).fadeIn(800);
		});
		
		$('.gallery-images img').hover( function() { 
				$(this).css('opacity', '0.8'); 
			}, function() { 
				$(this).css('opacity', '1'); 
			});		
	}); 

