﻿
$(document).ready(function(){
     // All master page related scripts
     // Sliding Login Panel
     // Expand Panel
	$("#open").click(function(){
		$("div#panel").slideDown("slow");
	
	});	
	
	// Collapse Panel
	$("#close").click(function(){
		$("div#panel").slideUp("slow");
    });
    // Collapsable Notifications 
    $(".notif_close").click(function() {
        $(".notif").slideUp();
    });	
	
	// Switch buttons from "Log In | Register" to "Close Panel" on click
	$("#toggle a").click(function () {
		$("#toggle a").toggle();
	});	
	
     // ColorBox popups for the master page items
	$("a[href='/Home/ContactUs']").colorbox({ width: "600px", height: "500px", iframe: true });
	$("a.content_preview_link").colorbox({ width: "750px", height: "500px", iframe: true });
	$("a.event_popup").colorbox();

	// confirm for Delete
	$("input[value='Delete']").click(function(){
      return confirm('Are you sure you want to delete this item?');
    });
});
