$(function() {
	$('.sub-box').hover(
		function() { $('.sub-box-image', this).hide(); },
		function() { $('.sub-box-image', this).show(); }
	);
	
	$('.sub-box2').hover(
		function() { $('.sub-box-image', this).hide(); },
		function() { $('.sub-box-image', this).show(); }
	);
	
	$('#landing-boxes .box').hover(
		function() {
			$('.landing-box-info', this).show();
			$('img', this).hide();
		},
		function() {
			$('.landing-box-info', this).hide();			
			$('img', this).show();
		}
	);
	
	
	$('.hover-links a') .hover(
		function() {
			$('.color', this).show();
			$('.bw', this).hide();
		},
		function() {
			$('.color', this).hide();
			$('.bw', this).show();
			
		}
	);
	

});
