$(document).ready(
	function(){
	
		//disable mouse highlighting
		$(".mousedown-disable") 
			.mousedown(
				function(e) {
					return false;
				});

	}
);
