/**
 * Blocking element and showing loading image function
 */
blockElement = function ( id )
{
	$("#" + id).css("opacity", 0.5);
}

/**
 * Unblocking element function
 */
unblockElement = function ( id )
{
	$("#" + id).css("opacity", 1);
}

