$(document).ready(function() {
	$('#cHomeBoxesContainer .cHomeBox').click(function() {
		document.location.href = $('.cBottom a', this).attr('href');
	});
	
	
	$('#cHomeBoxesContainer .cHomeBox').hover(function() {
		$(this).find('img').clearQueue().fadeTo(750, 0);
	}, function() {
		$(this).find('img').clearQueue().fadeTo(750, 1);
	});
});
