showHideConditions
var tagCookie = $.cookie("expert");
if (tagCookie == null) $.cookie("expert", "off");
$( document ).ready(function() {
$('#linkExpert').click( function() {
showExpert(); return false;
});
});
if (tagCookie == "off") {
$("*[data-mc-conditions*='expert']").hide();
$( "#linkExpert" ).toggleClass("btnOff btnOn");
}
function showExpert() {
$("*[data-mc-conditions*='expert']").toggle();
$( "#linkExpert" ).toggleClass( "btnOff btnOn" );
if (tagCookie == "on") { $.cookie("expert", "off"); }
else { $.cookie("expert", "on"); }
}