var precisionThinking = new function() {

	jQuery.noConflict();
	
	jQuery(function() {
		jQuery('.sidebar td').hover( function() {
			jQuery('span', jQuery(this)).css('color','#878787');
		},
		function() {
			jQuery('span', jQuery(this)).css('color','#4d4d4f');
		});
		jQuery('.sidebar td').click( function() {
			window.location = jQuery(this).attr('link');
		});
	});
	
	
	return this;
	
}();
