	$(document).ready(quote_swap);
	
	function quote_swap(){
		
		
		// on hover, find the ID of the mug
		$('.tptw_mug').hover(
			 	function(){
					var mugId =  $(this).attr('id');
					$('.tptw_mug').removeClass('active');
					$(this).addClass('active');
					$('#tptw_quote p').fadeOut(100);
					$('#tptw_bigpic img').fadeOut(100);
	
					setTimeout( function()
					      {
								$('#'+mugId+'Quote').fadeIn(500);
								$('#'+mugId+'BigPic').fadeIn(500);
					      }, 100);
			}
		  );

		}