$(document).ready(function() {
	var currentStyle = $.cookies.get('style');
	if (currentStyle != null) {
		switchStylestyle(currentStyle);
	}

	$('.bmpSwitch .blok').click(function(e) {
		switchStylestyle('bmp')
	});
	$('.ygbSwitch .blok').click(function(e) {
		switchStylestyle('ygb')
	});
});

function switchStylestyle(styleName) {
	$('body').removeClass('bmp').removeClass('ygb').addClass(styleName);
	$.cookies.set('style', styleName, {hoursToLive: 365});

/*
      $('link[@rel*=style][title]').each(function(i)
      {
         this.disabled = true;
         if (this.getAttribute('title') == styleName) this.disabled = false;
      });
	  
*/
}
