jQuery.noConflict();

jQuery(document).ready(function () {
  jQuery("#picture_upload").attr({title: "Bild ändern"});

  //shiftplanner
  var id='';
  jQuery('.shiftcalendar_image').hover(
	  function () {
		  id=jQuery(this).attr('id');
		  jQuery('#'+id+'_tooltip').show();
      },
      function () {
    	  jQuery('#'+id+'_tooltip').hide();
      }
  );
});

//redirect
function redirect(url) {
	window.location.href = url;
}

//datepicker
function activateDatePicker() {
	  //datepicker
	  jQuery('.datepicker').datepicker({dateFormat: 'dd.mm.yy',showOn: "both",buttonImage: "/typo3conf/ext/av_shift_planner/res/images/icons/icon_calendar.gif",buttonImageOnly: true})
	  jQuery('.datepicker').datepicker().focus(function() {
			jQuery('#ui-datepicker-div').css('top', jQuery(this).offset().top+3 + jQuery(this).height());
	  });
};




