$(document).ready(function() {
	$.easy.navigation();
	
$('.toggleCal').change(function() {
    $('.'+this.name).toggle();
    return false;
  }); 
  
$('#typeSelect').change(function() {
	$('.dispBlock').hide();
    $('#toggle'+this.value).toggle();
    return false;
  }); 
  
  $('#banner').cycle({
		fx: 'fade',
		speed: 2000,
		timeout: 7000,
		after: function(idx, slide) {
			$('#banner_title').html($(slide).children(0).attr('alt'));
		},
		pager: '#banner_page',
		pagerAnchorBuilder: function(idx, slide) {
			return '<li><a href="#">' + (idx + 1) + '</a></li>';
		}
	});
  
$.easy.popup();
$.easy.forms();
Galleria.loadTheme('javascript/galleria.classic.min.js');
  $('#gallery').galleria({
        width:660,
        height:580
    });
});



