$(document).ready(function(){
  
  $("#datepicker").datepicker();

	$(".suchen_weiter input").mouseover(function()
	{
		$(this).next().css('color','red');
        
	})
	
	$(".suchen_weiter input").mouseout(function()
	{
		$(this).next().css('color','#004172');
       
	})

   $("#adv_search_div p").mouseover(function()
	{

        $(this).css('color','red');
        $(this).css('cursor','pointer');
	})

	$("#adv_search_div p").mouseout(function()
	{
        $(this).css('color','#004172');
        $(this).css('cursor','normal');
	})

	$("#adv_search_div p").click(function()
	{
        if($(this).prev().attr("checked")==true) $(this).prev().attr("checked",false);
        else $(this).prev().attr("checked",true);
	})


 });
