$(function() {
	$('a#showall').live('click',function() {
		$('ul#more').slideToggle(400);
			$(this).attr('id','showless').html('<strong>Show less &uarr;</strong>');
			return false;
	});
	
	$('a#showless').live('click',function() {
		$('ul#more').slideToggle(400);
			$(this).attr('id','showall').html('<strong>Show More Programs &darr;</strong>');
		return false;
	});
	
    $('a#share').click(function() {
        $('ul#bookmark').slideToggle(200);
    	return false;
    });

	//$('#odc-event-info').jScrollPane({scrollbarWidth:10});

    $(".triple").popup({
	    width: 800,
	    height: 480,
	    titlebar: true,
	    status: false,
	    resizable: true,
	    toolbar: false,
	    scrollbars: false,
	    menubar: false
	});


    if($("#odcarchives").length > 0)
    $("#odcarchives").accordion({event: 'mouseover' });



});
