$(document).ready(function(){
	
	$('.inquiry select').tzSelect();
	
	$('#pageselectform .selectBox').click(function(){
		
		if( $('#pageselectform ul').hasClass('expanded') ) {
			$('#pageselectform ul').slideUp().removeClass('expanded');
		} else {
			$('#pageselectform ul').slideDown().addClass('expanded');
		}
		
		$(document).click(function(){
			$('#pageselectform ul').hide().removeClass('expanded');
		});
		
		return false;
	});
	
	$('input:checkbox').each(function() {
		
		$(this).after('<span class="checkbox" />');
				
		if( $(this).is(':checked') ) {
			$(this).next('span.checkbox').addClass('checked');
		}
		
		$(this).css({ 'position': 'absolute', 'left': '-9999px' });
		
		$(this).change(function() {
		
			if ( $(this).is(':checked') ) {
				$(this).next('span.checkbox').addClass('checked');
			} else {
				$(this).next('span.checkbox').removeClass('checked');
			}
		
		})
		
	})

});
