/*var currentBlogId = 0;
alert("hello");

$(document).ready(function(){
	jQuery.validator.addMethod(
		'title',
		function(value, element)
		{
			return this.optional(element) || /^([\w\d,.\!@#\$%\^&\*\(\)\-=_\+\s\'\"\/]+)$/.test(value);
		}
	);

	$('#login').validate({
		rules: {
			title: {
				required: true,
				title: true
			},
			body: {
				required: true
				title: true
			}
		},
		subtmitHandler: {
		
		},
		errorPlacement: {
		
		}
	});
});

function addComment(blogId, commTitle, commBody)
{
	currentBlogId = blogId;

	//open shadowbox
}*/

