$(document).ready(function() {
	$("#foglalas").validate();
});

$(document).ready(function() {
	$("#commentForm").validate();
	
   $('body').mousemove(function (e){
		doSomething(e.target)
	});
	var last = "";
	var now = ""
	function doSomething(e) {
		if($(e).attr('id')){
			now = $(e).attr('id')
		}else if($(e).parent().attr('id')){
			now = $(e).parent().attr('id')
		}else{
			now = $(e).parent().parent().attr('id')
		}
		
		if(now != last && now != undefined && now != "" && now !="container"){
			pageTracker._trackPageview('/mouse/'+now);
			//alert(now);
			last = now;
		}
	}	
	
});