// JavaScript Document

$(function()
{
    $('link').each(function(i){
      if(this.rel == 'stylesheet' && this.title == 'styleswichter'){
        if($.cookie('selected-style')){
          this.href = $.cookie('selected-style');
        }
        return true;
      }
    });

});


