jQuery.noConflict();
jQuery(function() {
	// OPACITY OF BUTTON SET TO 50%
	//jQuery(".thum_bg img").css("opacity","1");
	jQuery('.thum_bg a').hover(
		function() {
			//jQuery(this).parent().find('img').fadeTo(0.65)
			var img = jQuery(this).parent().prev().find('img');
			img.stop().animate({
				opacity: 0.65
			}, "medium");
		},
		function() {
			var img = jQuery(this).parent().prev().find('img');
			img.stop().animate({
				opacity: 1
			}, "medium");
		}
	);
	// ON MOUSE OVER
	jQuery(".body_container img").hover(function () {
		// SET OPACITY TO 100%
		jQuery(this).stop().animate({
			opacity: 0.65
		}, "medium");
	},
	// ON MOUSE OUT
	function () {
		// SET OPACITY BACK TO 50%
		jQuery(this).stop().animate({
			opacity: 1
		}, "slow");
	});

    // OPACITY OF BUTTON SET TO 50%
	jQuery(".body_container img").css("opacity","1");
	// ON MOUSE OVER
	jQuery(".body_container img").hover(function () {
		// SET OPACITY TO 100%
		jQuery(this).stop().animate({
			opacity: 0.65
		}, "medium");
	},
	// ON MOUSE OUT
	function () {
		// SET OPACITY BACK TO 50%
		jQuery(this).stop().animate({
			opacity: 1
		}, "slow");
	});
});

