// JavaScript Document
$(document).ready(function() {
	var divID;
	var showID;
	$('.showCont').click(function(){
		divID = $(this).attr('id');
		$('.open').fadeOut().removeClass('open');
		$('.'+divID).addClass('open').fadeIn();
	});
	$('.close-btn').click(function(){
		$('.open').fadeOut().removeClass('open');
	});
	$('.showCont').mouseenter(function(){
		showID = $(this).attr('id');
		//if(showID !="teapigs"){
			$(this).animate({'opacity':'0.5'});
		//}
	});
	$('.showCont').mouseleave(function(){
		$(this).animate({'opacity':'1'});
	});
	
});

