/* -----------------------------------------------------------------------------
Medienservice Sachsen
Javascriptfunktionen

version:   1.0 (05.10.2007)
author:    sven hantschack
email:     hantschack@webit.de
----------------------------------------------------------------------------- */


/* =DATUMSAUSWAHL
----------------------------------------------------------------------------- */

$(function()
{
	$('#date-pick-from')
		.datePicker({createButton:false, startDate: '01.01.1990'})
		.bind(
			'click',
			function()
			{
				$(this).dpDisplay();
				this.blur();
				return false;
			}
		)
		.bind(
			'dateSelected',
			function(e, selectedDate, $td)
			{
				$('#s_pub_date_from').val(selectedDate.asString());
			}
		);
	$('#date-pick-from').dpSetPosition($.dpConst.POS_TOP, $.dpConst.POS_RIGHT);
});

$(function()
{
	$('#date-pick-to')
		.datePicker({createButton:false, startDate: '01.01.1990'})
		.bind(
			'click',
			function()
			{
				$(this).dpDisplay();
				this.blur();
				return false;
			}
		)
		.bind(
			'dateSelected',
			function(e, selectedDate, $td)
			{
				$('#s_pub_date_to').val(selectedDate.asString());
			}
		);
	$('#date-pick-to').dpSetPosition($.dpConst.POS_TOP, $.dpConst.POS_RIGHT);
});


/* =Erweiterte Suche
----------------------------------------------------------------------------- */



