$(document).ready(function() {
	$("#btmcontent").imghover();
	$(".snippet").hover(
		function() {
			var clientName = $(this).attr('alt');
			$("#clientname").html(clientName);
		},
		function() {
			$("#clientname").html("");
		}
	);
	$("#brand").hover(
		function() {
			$(".snippet").hide();
			$(".brand").show();
		},
		function() {
			$(".snippet").fadeIn();
		}
	);
	$("#print").hover(
		function() {
			$(".snippet").hide();
			$(".print").show();
		},
		function() {
			$(".snippet").fadeIn();
		}
	);
	$("#packaging").hover(
		function() {
			$(".snippet").hide();
			$(".packaging").show();
		},
		function() {
			$(".snippet").fadeIn();
		}
	);
	$("#interactive").hover(
		function() {
			$(".snippet").hide();
			$(".interactive").show();
		},
		function() {
			$(".snippet").fadeIn();
		}
	);
});

