// JavaScript Document
function initBannerImages(){
	if($('#GVBanner')){
    newPath = getPath();
	var hdrImgPath = null, locationOf  = window.location.href;
	if(!!location.pathname.search('/Recipes/index.htm') && location.hash!==''){
                imglochash = location.hash.replace('#/', '');
                hdrImgPath = '/Images2/'+imglochash+ 'hdr_947x164.jpg';
        }else if(!!location.pathname.search('/Featured-Chefs/StarChefs.com/index.htm') && location.hash!==''){
                imglochash = location.hash.replace('#/', '');
                hdrImgPath = '/Images2/'+imglochash+ 'hdr_947x164.jpg';
        }else if(newPath.indexOf('_webapp_') > 0  || (m_section !=null && (newPath.indexOf('CustomContentRetrieve.aspx') > 0))){
	 hdrImgPath = '/Images2/Recipes/hdr_947x164_indiv.jpg';
	}else if(location.href.indexOf('OrderRetrievev2.aspx?CatalogueID=88') > 0){
		hdrImgPath = '/Images2/Cart/hdr_947x164.jpg';
	}else if(newPath.indexOf('_product_88') > 0 ){
                hdrImgPath = '/Images2/Order/hdr_947x164.jpg';
        }else if(newPath.indexOf('FormProcessv2.aspx') > 0){
	 hdrImgPath ='/Images2/hdr_947x164_general.jpg'; 
	}else if(locationOf.indexOf('PageID=3225830') > 0){
	 hdrImgPath ='/Images2/Links/hdr_947x164.jpg'; 
	}else if(location.href.indexOf('CampaignProcess.aspx') > 0){
          hdrImgPath= '/Images2/Campaign/hdr_947x164.jpg';
        }else{ 
	 hdrImgPath= '/Images2'+newPath+'/hdr_947x164.jpg';
	}

	$.ajax({url: window.location.protocol + "//" + window.location.host  +hdrImgPath,  
      type:'HEAD',
	   error:function(){
						if(newPath.indexOf('Recipes') > 0){
						hdrImgPath='/Images2/Recipes/hdr_947x164.jpg';
						}else{
								hdrImgPath='/Images2/hdr_947x164_general.jpg';
						}
											
						$('#GVBanner').append('<img src="'+hdrImgPath+'"  alt="" title="" width="947" height="164" class="block nextRow" />');
			  },
	   success:function(){
						$('#GVBanner').append('<img src="'+hdrImgPath+'"  alt="" title="" width="947" height="164" class="block nextRow" />');
			  }
	 });

	}
	/*toConsole(hdrImgPath);*/
}

function initRecipeLinkUpdates(){
if(location.pathname.search('/Recipes')>-1  && location.pathname.search('Recipes/index.htm')<0){
//var imgsrc = $('#GVBanner img').attr('src').replace('/Images2', '').replace('hdr_947x164.jpg', '');
var imgsrc ='/Recipes/';
var link = $('#recipes a');
$.each(link, function(){
url = $(this).attr('href');
url += '#' + imgsrc;
$(this).attr('href', url);
});
}

}

function initChefsLinkUpdates(){
if(location.pathname.search('/Featured-Chefs')>-1){
var imgsrc = $('#GVBanner img').attr('src').replace('/Images2', '').replace('hdr_947x164.jpg', '');
var link = $('#featured-chefs a');
$.each(link, function(){
url = $(this).attr('href');
url += '#' + imgsrc;
$(this).attr('href', url);
});
}

}

$(function(){initBannerImages();  setTimeout('initRecipeLinkUpdates()', 1100); setTimeout('initChefsLinkUpdates()', 1100);});
