$j(document).ready(function() {
	// fix post title headers
	var $j = jQuery.noConflict();
	$j('.titleRight').css('left','16px');
	
	//insert newsletter
	$j('img[name=flourish]').after("<p style='clear:left;color:black;font-size:10px;'>Enter your email to receive our newsletter.</p> <form method='post' action='http://www.theweblender.com/processForm.php' id='newsLetterSignUp'><input type='hidden' name='formName' value='newsletter' /><input class='LCinput' type='text' name='email' /><input type='image' src='http://www.worldofanarchy.com/TWLimages/leftColumn/submitBTN.png' id='newsLetterSignUpSubmit'/></form> <p id='newsletterMSG' class='disclaimer' style='color:red;'></p>  <p class='disclaimer'>*Your information is not shared with any third-parties.</p> <p class='disclaimer'>View our <a href='#' id='privacyPolicy'>Privacy Policy</a> for more information.</p>");

/*
//newsletter AJAX
	$j('#newsLetterSignUpSubmit').click(function() {
		$j.ajax({
			type : 'POST',
			url : 'http://www.worldofanarchy.com/TWLforms/newslettersignup.php',
			dataType : 'json',
			data: {
				email : $j('.LCinput').val()
			},
			success : function(data) {
				
					$j('#newsletterMSG').text(data.x);	
				
				
			},
			error : function(data) {
				alert(data.x+'');
			}
			
		});
		return false;
	});
*/
	
});
