jQuery("head").append("<meta name=\"viewport\" content=\"intial-scale=1.0,width=device-width\"/>");
jQuery(document).ready( function() {
	if( jQuery(window).width() < 960){ 
		jQuery(".CB-bottom").show().append(jQuery(".siteLink-wrapper")); 
	}
	jQuery(".InteriorWP").each(function(){
		var $this = jQuery(this),
			_childrens = $this.children().length;
		if ( _childrens > 0 ) return;
		if ( $this.text().length > 0 ){
			var text = $this.text().split(" "), len = text.length, result = []; 
			for( var i = 0; i < len; i++ ) { 
				if ( i%2 == 0){ result[i] = text[i];  }
				else { result[i] = "<span class='interior'>" + text[i] + "</span>"; }
			}
			$this.html(result.join(" "));
		}
	});
});