$(document).ready(function(){
  /* register any elements that need validation 
	*	force validation on field change*/
		//alert('hello');
	slider('slider');
	
	$("table a").each(function(){
							   var location = this.href;
		$(this).parent().parent().click(function(){ window.open(location);});
							   });
	
	$("table a").parent().parent().hover(function(){ 
			$(this).css("background-color","#cacfd4");
			$(this).css("cursor","pointer");
		}, function(){
			$(this).css("background-color","#ffffff");
			$(this).css("cursor","default");
		}
	);
	

});
