/// <summary>
/// home template specific js functions go here
/// </summary>

$(function() { 
	$('span#phPromoC4Image').each(function(){
		if ($(this).html()=='')
		{
			$('div.header').each(function(index){
				// remove the forth occurance of <div class=header>
				if (index == 3)
					$(this).remove();
			});
			$('div.footer').each(function(index){
				// remove the forth occurance of <div class=footer>
				if (index == 3)
					$(this).remove();
			});
			$('div.inner').each(function(index){
				// remove the third occurance of <div class=inner>
				if (index == 2)
					$(this).remove();
			});
		}			
	});

});

