// JavaScript Document	
function showBannerContent(sec,me){
	title="";
	intro="";
	morelink="";
	
	
	if(sec == "family"){
		title="Cranberry-mincemeat pie";
		intro="We've replaced a time-consuming homemade crust with store-bought puff pastry, to rave reviews. We also added tart cranberries to make this Christmas classic even more festive";
		morelink="<a href='/recipe/recipe12.asp' class='banner_link'>CLICK TO READ MORE</a>";
		document.getElementById("home_banner").style.background="transparent url(../images/hero/banner_main_w3_1.gif) no-repeat scroll left top";
		
	}
	else if(sec == "recipe"){
		title="Holiday pet safety tips";
		intro="Spending Christmas with Fluffy or Rover?";
		morelink="<a href='/family/family10.asp' class='banner_link'>CLICK TO READ MORE</a>";
		document.getElementById("home_banner").style.background="transparent url(../images/hero/banner_main_w3_2.gif) no-repeat scroll left top";
		
	}else if(sec == "style"){
		title="<span style='font-size:30px;'>HBC Torchbearer Adults Red Mittens</span>";
		intro="The hottest (and coziest) gift this holiday season will be the official Torchbearer mittens by HBC";
		morelink="<a href='/gifguide/gifguide_him.asp' class='banner_link'>CLICK TO READ MORE</a>";
		document.getElementById("home_banner").style.background="transparent url(../images/hero/banner_main_w3_3.gif) no-repeat scroll left top";
		
	}else if(sec == "entertain"){
		title="Hostess Gifts With Style";
		intro="It's only appropriate that we bring a little something for the fabulous host or hostess";
		morelink="<a href='/entertain/entertain11.asp' class='banner_link'>CLICK TO READ MORE</a>";
		document.getElementById("home_banner").style.background="transparent url(../images/hero/banner_main_w3_4.gif) no-repeat scroll left top";
		
	}else{
		title="Cranberry-mincemeat pie";
		intro="We've replaced a time-consuming homemade crust with store-bought puff pastry, to rave reviews. We also added tart cranberries to make this Christmas classic even more festive";
		morelink="<a href='/recipe/recipe12.asp' class='banner_link'>CLICK TO READ MORE</a>";
		document.getElementById("home_banner").style.background="transparent url(../images/hero/banner_main_w3_1.gif) no-repeat scroll left top";
	}
	
	//change current thumbnail's bg
	$(".home_banner_thumb_item").removeClass("hb_on");	
	$(me).addClass("hb_on");
	
	//change the content
	$("#home_banner_title").html(title);
	$("#home_banner_intro").html(intro);
	$("#home_banner_link").html(morelink);
	
	
	return false;
}