var COOKIE_NAME = 'wandel_nav';
var options = { path: '/', expires: 1 };

var lightboxOptions = {
    imageBtnPrev:   'out/img/wandel/lightbox/lightbox-btn-prev.gif',
    imageBtnNext:   'out/img/wandel/lightbox/lightbox-btn-next.gif',
    imageLoading:   'out/img/wandel/lightbox/lightbox-ico-loading.gif',
    imageBtnClose:  'out/img/wandel/lightbox/lightbox-btn-close.gif'
};

$(document).ready(function(){
    // Wenn in Objektsuche etwas ausgewaehlt wird, dann sende Formular
    $('#epoche_select,#prart_select,#thema_select').change(function(){
        $(this).parent('form').submit();
    });
    
    // Setze Verkauf und Verleih beim anklicken auf '(in)aktiv'
    $("#verkauf").click(function(){
		$("a.reiter.active").removeClass("active");
		$(this).addClass("active");
		$("#verleih_form").hide();
		$("#verkauf_form").show();
        $('#okats').show();
        $.cookie(COOKIE_NAME, 'verkauf', options);
	});
	$("#verleih").click(function(){
		$("a.reiter.active").removeClass("active");
		$(this).addClass("active");
		$("#verkauf_form").hide();
		$("#verleih_form").show();
        $('#okats').hide();
        $.cookie(COOKIE_NAME, 'verleih', options);
	});
    
    // Wende lightbox auf alle Elemente mit der Klasse 'lightbox' an
    $(".lightbox").lightBox(lightboxOptions);
});

function sendsearch()
{
	var $sContent = $('#prart_select').children('option:selected').attr('title');
	$('#input_pron').attr('value', $sContent);
}
