jQuery(function($) {
	
	$(".field").focus(function() {
		if( $(this).val()==$(this).attr("title") ) $(this).val("");
	}).blur(function() {
		if( $(this).val()=="" ) $(this).val($(this).attr("title"));
	});

	$("#nav > ul > li:has('.sub-menu')")
	.mouseenter(function() {
		$(this).children("ul").delay(150).slideDown();
	})
	.mouseleave(function() {
		$(this).children("ul").stop(true,true).delay(100).slideUp();
	});

	$('.compare tr').each(function() {
		$(this).find('td:eq(2)').addClass('strikeout');
		$(this).find('td:eq(3)').addClass('youpay');
	});

/*	
	$("#nav > ul > li:has('.sub-menu')").hover(function() {
		$(this).find('ul').stop(true, true).slideToggle();
	});
*/
});

