$(function(){  // loading element   $(window).load(function() {       $('#nowload').fadeOut(1000);         $('#loading').fadeOut(500);   });       //innerfade   $('.fade').cycle({         speed: 3000,         timeout: 6000,         type: 'sequence',        containerheight: '323px'    });       // hidden counter   $("#counter_div").click(function(){       $(this).fadeOut("slow");          $(".counter").fadeIn("slow");   });   $(".counter").click(function(){       $(this).fadeOut("slow");          $("#counter_div").fadeIn("slow");   });});$(function(){$("#jstyle").attr({href:$.cookie('style')});});function jstyle(cssurl){$('#jstyle').attr({href:cssurl});$.cookie('style',cssurl,{expires:30,path:'/'});}