﻿$(document).ready(function() {
	$('.hoverme li').mouseenter(function(){
		$(this).addClass('hover');
	}).mouseleave(function() {
		$(this).removeClass('hover');
	});
	
	$('.hoverme tr').mouseenter(function(){
		$(this).addClass('hover');
	}).mouseleave(function() {
		$(this).removeClass('hover');
	});
	
	$('.inpsmart').focus(function() {
		var me = $(this);
		if (me.val() == me.attr('title')) {
			me.val('');
		}
	}).blur(function() {
		var me = $(this);
		if (me.val() == '') {
			me.val(me.attr('title'));
		}		
	});
});
