$(function() {
// Prices hover
	$('#prices li').animate({
		"opacity": .8
	});
	
	$('#prices li').hover(function() {
		$(this).stop().animate({ "opacity": 1 	});
		}, function() {
			$(this).stop().animate({ "opacity": .8 });
	});
	
	
//Gallery hover
	$('#thumbcols img').animate({
			"opacity": .6
	});
		
	$('#thumbcols img').hover(function() {
			$(this).stop().animate({ "opacity": 1 	});
			}, function() {
				$(this).stop().animate({ "opacity": .6 });
	});
	
	$('#thumbcols img').click(function() {
		$(this).stop().animate({ "opacity": 1 	});		
	});
			
	
	

	$('#thumbcols li').click(function() {
		$(this).toggleClass('selected');
		


		
	});


});
