// JavaScript Document

jQuery(function() {
    subNav();
});

 

function subNav() {
    jQuery('.eventMenuSub').hide();
    jQuery('.eventMenuSub').slideDown("slow");
}

jQuery(function() {
    jQuery('.collapseSelectGroup h3').click(function(){
		  $(this).parent().toggleClass("collapseSelectGroupClosed");
																										 });
    jQuery('.ratesGroup h3').click(function(){
		  $(this).parent().toggleClass("ratesGroupClosed");
																						});
});

//function packUnits() {
//    jQuery('dd.packUnits + dt').hide();
//    jQuery('dd.packUnits + dt + dd').hide();
//    jQuery('dd.packUnits').append('&emsp;&emsp; <a class="packUnitsShow" style="cursor: pointer;" href="#">View Available Units</a>');
//    jQuery('a.packUnitsShow').toggle(function(){
//						$(this).text('Hide Available Units');
//						return false;
//				},function(){
//						$(this).text('View Available Units');
//						return false;
//				}).click(function(){
//						$(this).parent().nextAll(':lt(2)').toggle('fast');
//						return false;
//				});
//}
