$(function (){

	// make entire 'news-story' items clickable
	$(".news-story").each(function() {
		
		var link = $(this).find("a").attr('href');		
		$(this).click(function(	) {
			location.href = link;
		});
		
		$(this).mouseover(function() {
			$(this).css( 'cursor', 'pointer' );
		});
		$(this).mouseout(function() {
			$(this).css( 'cursor', 'default' );
		});
		
	});
	
	// make entire 'sales-propositions' list elements clickable
	$("#sales-propositions li").each(function() {
		
		var link = $(this).find("a").attr('href');		
		$(this).click(function(	) {
			location.href = link;
		});
		
		$(this).mouseover(function() {
			$(this).css( 'cursor', 'pointer' );
		});
		$(this).mouseout(function() {
			$(this).css( 'cursor', 'default' );
		});
		
	});
	
	// make entire 'featured' boxes clickable
	$(".featured").each(function() {
		
		var link = $(this).find("a").attr('href');		
		$(this).click(function(	) {
			location.href = link;
		});
		
		$(this).mouseover(function() {
			$(this).css( 'cursor', 'pointer' );
		});
		$(this).mouseout(function() {
			$(this).css( 'cursor', 'default' );
		});
		
	});

	
});
