/*
 * AntiFeeds 0.1 
 * By Erik Ryerson (http://www.36invisible.com)
 * Copyright (c) 2007 Erik Ryerson
 * All Rights Reserved.
*/

  $(document).ready(function(){

    function loadFeeds() {
        $("#fragment-0").load("get_feed.php",{url:'http://www.antiochians.org/controls/cms_v2/components/rss/rss.aspx?sid=1050&gid=1&calcid=749&page_id=61',eid:'Antiochians.org',frag:2});
        $("#fragment-1").load("get_listserv.php",{url:'http://collegefaculty.org/feed',eid:'AntiochFaculty.org',frag:3});
        $("#fragment-2").load("get_listserv.php",{url:'http://recordonline.org/feed',eid:'RecordOnline.org',frag:4});
        $("#fragment-3").load("get_feed.php",{url:'http://theantiochpapers.org/atom',eid:'TheAntiochPapers.org',frag:5});
        $("#fragment-4").load("get_listserv.php",{url:'http://feeds.feedburner.com/SaveAntioch',eid:'SaveAntioch',frag:6});
        $("#fragment-5").load("get_listserv.php",{url:'http://feeds.feedburner.com/Alumni-chat',eid:'Alumni-Chat',frag:7});
	//$("#controller").load("inc/controller.php");
	//$("#gsearch").load("inc/googlesearch.php");
    }
    loadFeeds();
    
    var tock = function() {
	var poop = $('dt.isfirst').clone();
	$('#ticker').html('<b>Top headlines:</b> ');
	for (var i = 0; i < poop.length; i++) {
	$('#ticker').append(poop[i]);	
	}
	$('#ticker').wrapInner('<dl id="news"></dl>');	
	//$('#tickerouter').fadeIn();
    	$("#news").newsticker(4100);
    };
    var ticktock = function() { setTimeout(tock,2400); };
    ticktock();

    $('#example').show();
    $("#example > ul").tabs({ fxSlide: false, fxSpeed: 'fast' });

    $('dl.newsticker dt').livequery('click', function() { var fr = parseFloat($(this).attr('class')); $('#example > ul').tabsClick(fr); return false; });

    $('dl.mainfeed dt').livequery('click', function() { 
		$(this).next().toggle().blur();
		$(this).addClass('visited');
		return false;
    });
    function doController(poo) {
        if($(poo).attr('href') == '#welcome' || $(poo).attr('href') == '#related-links') {
		$('#controller').hide(); 
	} else {
		$('#controller').hide().slideDown('slow');
	}
    }
    $('#example > ul > li > a').click(function() { doController($(this)); });
    $('a#expand').click(function() { $('dd').show(); return false; } );
    $('a#collapse').click(function() { $('dd').hide(); return false; } );
    function doReload() {
	doController(null); $('dl').hide(); $('#ticker').html('Loading top headlines... '); loadFeeds(); ticktock();
    }
    $('a#reload').click(function() { doReload(); });

    $(window).keydown(function(event){
      switch (event.keyCode) {
        // see here for details: http://unixpapa.com/js/key.html    
	case 69:	// e
	    $('dd').show();
	    break;
	case 67:	// c
	    $('dd').hide();
	    break;
	case 82:	// r
	    doReload();
	    break;
	case 190:	// .
	    $('#example > ul').tabsClick($('#example > ul').tabsSelected()+1);
	    break;
	case 188:	// ,
	    $('#example > ul').tabsClick($('#example > ul').tabsSelected()-1);
      }
    });

    $('#beta').click(function() { $('<div class="flora" title="ANTIFEEDS is BETA">ANTIOCHIAN ANTIFEEDS is in beta testing phase and may contain bugs and potentially irksome errors. Feedback is welcome. Complainers are not.<br/><br/>Copyright &copy; 2007 erik ryerson (<a href="http://36invisible.com">36invisible.com</a>).<br/>feed content &copy; by its source.</div>').appendTo('body').dialog({width:340}); return false;} );
    $('#help').click(function() { $('<div class="flora" title="ANTIFEEDS Help"><b>ANTIFEEDS</b> aggregates external news from various sites across the web in a clean and convenient place.<br/><br/> <b>Quick Keys:</b><br/> Use your keyboard to quicken your ANTIFEEDS experience!<br/><br/> ,/. = previous tab/next tab<br/> e = expand all threads<br/> c = collapse all threads<br/> r = reload all feeds<br/> <br/> More help coming soon!  <br/><br/>ANTIFEEDS is copyright &copy; 2007 erik ryerson (<a href="http://36invisible.com">36invisible.com</a>).<br/>feed content &copy; by its source.</div>').appendTo('body').dialog({height:320,width:500}); return false;} );
    $('#searchbox').click(function() { $('#gsearch').toggle(); });
/*
    $('dd > a').livequery('click', function() { var myhref = $(this).attr('href'); $('<div class="flora" title="ANTIFEED article source"><iframe style="width:100%;height:100%;min-height:340px;border:0px;margin:0;padding:0;" src="'+myhref+'"></iframe></div>').appendTo('body').dialog({height:400,width:720}); return false;} );
*/

});

