// JavaScript Document
//1
jQuery(function($) {
			$('.thbg')
				.hover(function() {
					$(this).animate({
						opacity: .5	
					}, {
						duration:200
					})
				}, function() {
					$(this).animate({
						opacity:1
					}, {
						duration:200
					})
				});
		});
jQuery(function($) {
			$('.large')
				.hover(function() {
					$(this).animate({
						opacity: .5	
					}, {
						duration:200
					})
				}, function() {
					$(this).animate({
						opacity:1
					}, {
						duration:200
					})
				});
		});


