/*
							   
	$(document).ready(function(){									
									
		$('#bgkrst_infobox_container-1, #bgkrst_infobox_container-2, #bgkrst_infobox_container-3')
			.bind( 'mouseenter', function(){	
														 
				$(this).find('ul').show('slow').bind( 'mouseleave', function(){
					$(this).hide('slow');
				}); 												
			} )	
	})									
*/
// datepicker bugged bei position fixed -.-
$(function(){
	if(typeof $('#cst_box_request_form_rd_from1').datepicker !='undefined')
	{
		$('#cst_box_request_form_rd_from1').datepicker({
		    beforeShow: function(input, inst){
		   	 	if( $(window).scrollTop() < 100 ){
		   	 		
		   	 	} else if( $(window).scrollTop() < 200 ){
		   	 		inst.dpDiv.css({marginTop: (-input.offsetHeight - 100) + 'px'});
		   	 	} else if( $(window).scrollTop() > 200  ){
		   	 		inst.dpDiv.css({marginTop: (-input.offsetHeight - 200) + 'px'});
		   	 	}
		    }
		});
	}
});

