jQuery(document).ready(function() {
	jQuery( '#jswarning' ).hide();
	jQuery( '#sidebarad' ).show();

	jQuery( '#toggle-sidebar' ).show();
	jQuery( '#toggle-sidebar' ).click(function(e) {
		jQuery( '#sidebar' ).toggle();
		if( jQuery( '#sidebar' ).is(':visible') ) {
			jQuery( '#main-content' ).css('width','700px');
		}
		else
		{
			jQuery( '#main-content' ).css('width','1000px');
		}
	});
	
	jQuery( '.read-more-link' ).hide();
	jQuery( '.read-more-expand' ).show();
	jQuery( '.read-more-expand' ).click(function(e) {
		jQuery(this).parent().parent().hide().next().show();
	});
	
	var _gaq = _gaq || [];
	_gaq.push(['_setAccount', 'UA-7543411-2']);
	_gaq.push(['_trackPageview']);

	var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
	ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
	var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);

});

