
(function($) { 

	// $( document ).ready ( function () {
	// 
	// 	var selectBars = $( "div.select-button" );
	// 	// console.log($("div.select-button").html());
	// 	selectBars.toggle ( 
	// 		function ( event ) {
	// 		
	// 			$(this).css({outline:"none"});
	// 			$(this).removeClass('select-box-no-background');
	// 			$(this).val('');
	// 		
	// 			selectBars.siblings('.select-open').hide();
	// 			
	// 
	// 			$(this).siblings('.select-open').slideToggle(125);
	// 			$(this).css({backgroundPosition: "0 -25px"},125);
	// 			$(this).siblings('.select-open').children('.select-open-list').jScrollPane({scrollbarWidth:15,dragMinHeight:30,dragMaxHeight:30, scrollbarMargin:0});
	// 		},
	// 		function(event) {
	// 			$(this).removeClass('select-box-no-background');
	// 			$(this).val('');
	// 			$(this).siblings('.select-open').slideToggle(100);
	// 			$(this).css({backgroundPosition: "0 0"});
	// 		}
	// 	);
	// 
	// 
	// 	$('.select-open-list ul li a').click(function(e) {
	// 
	// 		$(this).parents('.select').children('input').addClass('select-box-no-background').val($(this).text());
	// 	
	// 		$(this).parents('.select').children('input').hover(function(e) {
	// 			$(this).css({backgroundPosition: "0 25px"});
	// 		}, function() {
	// 			$(this).css({backgroundPosition: "0 0"});
	// 		});
	// 		$(this).parents('.select-open').slideToggle(100);
	// 		return false;
	// 	});
	// 
	// 	$('#zip-postal-code').click(function() {
	// 		if ($(this).val() == "Zip/Postal Code") {
	// 			$(this).val('');
	// 		} else {
	// 			if ($(this).hasClass('select-box-no-background')){
	// 				$(this).removeClass('select-box-no-background');
	// 			}
	// 		}
	// 	}).blur(function() {
	// 		if ($(this).val() == '') {
	// 			$(this).val("Zip/Postal Code");
	// 		} else {
	// 			$(this).addClass('select-box-no-background');
	// 		}
	// 	});
	// });
	// 
})(jQuery);
