jQuery(document).ready(function(){ var meta=''; jQuery("head").append(meta); jQuery( "#header ul" ).attr('id','sideNavigation'); var html =''; jQuery( "#sideNavigation" ).before(html); var closebtn ='×'; jQuery( "#sideNavigation li:first-child" ).before(closebtn); jQuery('.topnav a').click(function(){ jQuery('#sideNavigation').css('width','250px'); jQuery("#main").css('margin-left','0'); }); jQuery('.closebtn').click(function(){ jQuery('#sideNavigation').css('width','0'); jQuery("#main").css('margin-left','0'); }); if(jQuery(window).width() <= 768) { jQuery('#right').hide().insertAfter('#main').show(); } //jQuery('.quarterBlock').wrapAll('
'); });