$(document).ready(function(){ 
	// jquery stuff goes here!!
	//Blog Comments Live Preivew
		$('#comment-form').one('focus',function() {
			$('#comment').parent().after('<div id="live-preview"></div>');
		});
		var comment = ''; 
		var name = ''; 
		var after = ''; 
		$('#message').keyup(function() {
			comment = $(this).val();
			name = $('#comment-name').val();
			if(name != '')
			{
				after = '<h3>' + name + ' <span>said</span></h3>';
			}
			comment = comment.replace(/\n/g, "<br />").replace(/\n\n+/g, '<br /><br />').replace(/(<\/?)script/g,"$1noscript");
			finalVar = '<p>Comment Preview</p><div id="preview">' + after + comment + '</div>';
			$('#live-preview').html( finalVar );
		});
		
	$("a.zoom").fancybox();
	
});

// add any other non-jquery js here, including swf object
