$(document).ready(function() {
		$('.helptext').hover(function() {
			popup = $(this).stop().find('.helptext-popup');
			popup.stop().css('display', 'inline');
		}, 
		function() {
			popup = $(this).find('.helptext-popup');
			popup.stop().css('display', 'none');
		});
});


function hidePrice()
{
	$('#hide_price').click(function() {
		if($('#price').attr('disabled'))
		{	$('#price').attr('disabled', false);	
		}
		else
		{	$('#price').attr('disabled', true);	
		}
		
		if($('#price_negotiable').attr('disabled'))
		{	$('#price_negotiable').attr('disabled', false);	
		}
		else
		{	$('#price_negotiable').attr('disabled', true);	
		}
	});	
}
