$(document).ready(function(){
	if (window.location.hash.length) {
		hashArray = window.location.hash.substr(1).split(",");
		$('#specifications tr').each(function(){
			if ($(this).children('td').size()>1) {
				for (i=0; i<hashArray.length; i++) {
					if ($(this).children('td:eq(0)').html().search(hashArray[i]) != -1) {
						$(this).addClass('selected');
					}
				}
			}
		});
	}
});