(function($) {

$(document).ready(function() {

  // Append Login Toggle Link to Global Links
  $('#toggle').appendTo('div.globalMenu p');

  // Prepend Login Panel to Main Container
  $.get('/Portals/80236/loginpanel.html', function(data) {
    $('#foxboro_body').prepend(data);
  });

	// Expand Login Panel
	$("#open").click(function(){
		$("div#panel").slideDown("slow");
	});	

	// Collapse Login 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();
	});	


  // Inside L Column Form Checkboxes
     $('#foxboro_col2 .CheckboxGroupContainer input').each(function(){
      $(this).add( $(this).next() ).wrapAll('<div class="checkdiv"></div>');
     });

  // initiate shadowbox lightbox
    Shadowbox.init();

});

})(jQuery);
