
$(document).ready(function(){

	//hide the all of the element with class msg_body
	$(".servicii_full").livequery(function() {
		$(this).hide();
		});
	//toggle the componenet with class msg_body
});

function loadContent(elementSelector, sourceUrl) {
$(""+elementSelector+"").load(""+sourceUrl+"");
$.ajax({
	//beforeSend: function(){$("#lmain").show("fast");}, //show loading just when link is clicked
	//complete: function(){ $("#lmain").hide("fast");}, //stop showing loading when the process is complete
	//beforeSend: function(){ 
							//$(".servicii_full").hide();
					// }
	});
}


