﻿$(function(){

if(((window.location.pathname.toLowerCase())== "/default.aspx") || ((window.location.pathname.toLowerCase())== "/"))

{
  if($('#BottomBox').css('display') == 'none')
 {
    $('#BottomBox').show();
    $('#DelimitatorBar').show();
 }
}
else{

 if($('#BottomBox').css('display') == 'block')
  {
    $('#BottomBox').hide();
    $('#DelimitatorBar').hide();
  }
}
 $('#WeeklySpecials').click(function(){
  window.open('http://familyownedmarkets.mywebgrocer.com/StoreLocator.aspx?f=cir&reason=NO_STORE_CIR','_self');
  });
$('#Map').click(function(){
  window.open('http://familyownedmarkets.mywebgrocer.com/StoreLocator.aspx','_self');
  });
  $('#FeaturedRecipes').click(function(){
  window.open('FeaturedRecipes.aspx','_self');
  });
    $('#Community').click(function(){
  window.open('Community.aspx','_self');
  });
  
   
});

 

