function selectBanner()
{
    var current_location = window.parent.location.href;
    if (current_location.indexOf('index')!= -1)
        document.write("<img src='images/banner_news.jpg'>");
		            
    else if ((current_location.indexOf('wines')!= -1)||(current_location.indexOf('cases_everyday')!= -1)||(current_location.indexOf('cases_finedining')!= -1)||(current_location.indexOf('cases_other')!= -1)||(current_location.indexOf('completecellar')!= -1)||(current_location.indexOf('prodinfo_wine')!= -1)||(current_location.indexOf('prodinfo_case')!= -1))
        document.write("<img src='images/banner_wines.jpg'>");
    else if (current_location.indexOf('previewcru')!= -1)
        document.write("<img src='images/banner_previewcru.jpg'>");           
    else if (current_location.indexOf('gifts')!= -1)
        document.write("<img src='images/banner_gifts.jpg'>");
    else if (current_location.indexOf('tastings')!= -1)
        document.write("<img src='images/banner_tastings.jpg'>");
	else if ((current_location.indexOf('foodandwine')!= -1)||(current_location.indexOf('pairings')!= -1)||(current_location.indexOf('recipes')!= -1)||(current_location.indexOf('wine_dictionary')!= -1))
        document.write("<img src='images/banner_foodandwine.jpg'>");
	else if ((current_location.indexOf('about')!= -1)||(current_location.indexOf('behindthename')!= -1)||(current_location.indexOf('team')!= -1)||(current_location.indexOf('selectionprocess')!= -1)||(current_location.indexOf('sommeliers')!= -1))
        document.write("<img src='images/banner_about.jpg'>");
	else if ((current_location.indexOf('shipping')!= -1)||(current_location.indexOf('faqs')!= -1)||(current_location.indexOf('privacy')!= -1)||(current_location.indexOf('terms')!= -1))
        document.write("<img src='images/banner_faqs.jpg'>");
	else if ((current_location.indexOf('news')!= -1)||(current_location.indexOf('subscribe')!= -1)||(current_location.indexOf('unsubscribe')!= -1))
        document.write("<img src='images/banner_news.jpg'>");
	else if (current_location.indexOf('contact')!= -1)
        document.write("<img src='images/banner_contact.jpg'>");
	
    else
        document.write("<img src='images/banner_news.jpg'>");



}
