$(document).ready(function()
{

var cookieNow = readCookie('favMarket');
if (cookieNow != '' && cookieNow != null && $('#marketSelector').length == 1)
  {

$('#marketSelector').val(cookieNow);

 $('.singleBox').hide();

   var divSize = $('.'+cookieNow).length * 130;
   if (divSize != 0)
   {
    
   $('#shiftingDiv').width(''+divSize+'px');
   $('.'+cookieNow).show(1000);
   $('.'+cookieNow).css('display','inline');
   }  
   else
   {
     $('#shiftingDiv').width('620px');
         $('#shiftingDiv').append("<h3 class=\"noProdsAvailable\">No products available for the selected market<br /><br />Please select another market</h3>");
     $('.noProdsAvailable').fadeIn("1000");
   }

  }


$('#marketSelector').change(function(){

Delete_Cookie('favMarket','/','');
createMarketCookie($(this).val());


  if ($(this).val()!= '' )
  {
$('.noProdsAvailable').remove();
   $('.singleBox').hide();

   var divSize = $('.'+$(this).val()).length * 130;
      if (divSize != 0)
       {
        $('#shiftingDiv').width(''+divSize+'px');
        $('.'+$(this).val()).show(1000);
        $('.'+$(this).val()).css('display','inline');
       }
       else
       {
     $('#shiftingDiv').width('620px');
     $('#shiftingDiv').append("<h3 class=\"noProdsAvailable\">No products available for the selected market<br /><br />Please select another market</h3>");
          $('.noProdsAvailable').fadeIn("1000");
       }
  }
  else
  {
$('.noProdsAvailable').remove();
   var divSize = $('.singleBox').length * 130;
   $('#shiftingDiv').width(''+divSize+'px');
   $('.singleBox').show(1000);
   $('.singleBox').css('display','inline');

  } 


})
})
