$(document).ready(function () {
    var $div = $('#infobox');
    var height = $div.height();
    $div.hide().css({ height : 0 });

    $('.openinfo').click(function () {
        if ($div.is(':visible')) {
            $div.animate({ height: 0 }, { duration: 500, complete: function () {
                $div.hide();
            } });
        } else {
            $div.show().animate({ height : height }, { duration: 500 });
        }
        return false;
    });
});


$(function() {
     $('#images a').lightBox();
 });

$(document).ready(function(){	
	$("#slider").easySlider({
		auto: false,
		numeric: true,
		continuous: true,
		nextId: "slider1next",
		prevId: "slider1prev"
	});
});
