$(document).ready(function(){
	
    // Align Columns
    var center_height = $('#primary_content').height(); 
    var left_height   = $('#navigation').height();
    if(center_height < left_height) { 
        $('#primary_content').height(left_height); 
    } else { 
        $('#primary_content').css({paddingBottom:36}); //no-op ?
    } 

    // Login Panel
    //$(".open a").click(function(){
    //$("#login_box").animate({width: "450", }, "slow")
    //$(".open").hide("fade");
    //$("#login_box a.close").click(function(){
    //	$("#login_box").animate({width: "0", }, "fast")
    //	$(".open").show();
    //});
    //});
    
    // CTA HOVER
    $(".cta").hover(function(){
	$(this).addClass("cta_hover");
	$(".cta h3").addClass("cta_hover");
    }, function() {
	$(this).removeClass('cta_hover');
	$(".cta h3 a").removeClass("cta_hover");
    });
    // ADD ANCHOR
    $(".cta").click(function(){
	window.location=$(this).find("a").attr("href");return false;
    });
    // ZEBRA
    $("table.zebra tbody tr:even").addClass('alt');
    
});
