/*************************************
/* All pages to add curves to the upper right and lower right corners of the content 
 *************************************/
$('.curve').cornerz({ radius:10, background: "#969E25",   corners: "tl", borderWidth: "2", borderColor: "#969E25" })   
$('.curve').cornerz({ radius:10, background: "#969E25", corners: "tr", borderWidth: "2", borderColor: "#969E25" })
$('.selected').cornerz({ radius:10, background: "#969E25",   corners: "tl", borderWidth: "2", borderColor: "white" })   
$('.selected').cornerz({ radius:10, background: "#969E25", corners: "tr", borderWidth: "2", borderColor: "white" })



$(document).ready(function() {

    var awesome_things = [
        "Network, learn, grow. Sign up today.",
        "Dreaming of starting a business?",
        "Get a product idea off the ground!",
        "Connect with others ... just like you!"
    ];

    for(var i = 0; i < awesome_things.length; i++) {
        $("<span>" + awesome_things[i] + "</span>").appendTo("#tagline .tagline");
    }

    $("#tagline .tagline").cycle({ random: true });



  /*var currentLocation = getLeaf(document.location.href);
  $("ul#topnav li").each(function() {
      if(getLeaf($(this).children("a").attr("href")) == currentLocation) {
          $(this).addClass("selected")
              .cornerz({ radius:10, background: "#969E25",   corners: "tl", borderWidth: "2", borderColor: "white" })
              .cornerz({ radius:10, background: "#969E25", corners: "tr", borderWidth: "2", borderColor: "white" })
              ;
      }
  });*/

});


function getLeaf(url) {
  return url.substring(url.lastIndexOf("/")+1);
}

