$(document).ready(function() {
	if ($('#select').length > 0) {
		$('#select').selectbox();
	}
	
	if ($('#select-wide1').length > 0 || $('#select-wide2').length > 0) {
		$('#select-wide1').selectbox();
		$('#select-wide2').selectbox();
	}
	
	if ($('#select-short1').length > 0) {
		$('#select-short1').selectbox();
		$('#select-short2').selectbox();
		$('#select-short3').selectbox();
		$('#select-short4').selectbox();
		$('#select-short5').selectbox();
		$('#select-short6').selectbox();
	}
	
	if ($('#table-list').find('table').length > 0) {
		$('tr:even').not(':first').addClass('eve');
	}
	
	$('input[type=checkbox]').prettyCheckboxes({
		checkboxWidth: 18, // The width of your custom checkbox
		checkboxHeight: 18, // The height of your custom checkbox
		className : 'prettyCheckbox', // The classname of your custom checkbox
		display: 'list' // The style you want it to be display (inline or list)
	});

});

