/// <reference path="http://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.js"/>

$(document).ready(function () {

    //lightbox
    $(".lightbox").colorbox({ iframe: true, innerWidth: 650, innerHeight: 366 });

    // external links
	$('body').delegate('a[href^=http]:not([href*="' + location.hostname + '"]), a:[rel~="external"]', 'click', function () { $(this).attr('target', '_blank'); });

	    // Expand Panel
	    $("#open").click(function () {
	        $("div#panel").slideDown("slow");

	    });

	    // Collapse Panel
	    $("#close").click(function () {
	        $("div#panel").slideUp("slow");
	    });

	    // Switch buttons from "Log In | Register" to "Close Panel" on click
	    $("#toggle a").click(function () {
	        $("#toggle a").toggle();
	    });


		

});
