
// For Input Forms

function clearText(srcObj){
if(srcObj.title == srcObj.value) srcObj.value = "";
}

function writeText(srcObj){
if(srcObj.value == "") srcObj.value = srcObj.title;
}


$(function(){
	if($('.specs-table').length>0){
		$('.specs-table tr:first-child').addClass('tbl-head');
		$('.specs-table tr:last-child').addClass('tbl-foot');
		$('.specs-table tr').each(function(){
			var tr = $(this);
			if($(tr).children('td').length>1){
				$(tr).children('td:first-child').addClass('tbl-1');
				$(tr).children('td:last-child').addClass('tbl-2');
			}
		});
	}
	
	$('#menu-nav-menu > li').hover(function(){
		$(this).addClass('hover');
	},function(){
		$(this).removeClass('hover');
	});
});
