// JavaScript Document

$(document).ready(function(){

	$("div.sortpreis form input").addClass("btn");
	$("div.infos table").addClass("ObjDaten");
	$("#objDaten table tr td:even").addClass("bold");
	$("div.team div.border_bottom:last").addClass("noborder_bottom");
	$("select#object_typ option").addClass("obj_typ");
	
	
	$('form[name="quicksearch"]').submit(function()
	{
		$('input[type="text"]').each(function()
		{
            if ($(this).val() == $(this).attr('defaultValue'))
				$(this).val('');
		});
	});
	
	$('input[type="text"]').focus(function()
	{
		if ($(this).val() == $(this).attr('defaultValue'))
			$(this).val('');
	});
	
	$('input[type="text"]').blur(function()
	{
		if ($(this).val() == '')
			$(this).val($(this).attr('defaultValue'));
	});
	
});	


		

