$(document).ready(function() {

	setupZoom();

	$(document).pngFix();

	$('input:password').dPassword({
		duration: 2000,
		prefix: 'my_'
	});
	
});


function go() {
}


function ajax_load_fade_in(url, id) {

	$.get(url, function(data){
		$(id).hide();
		$(id).html(data);
		$(id).fadeIn();
	});    

}


function ajax_calculate(k, v) {

	$.get(url, function(data){
		$(id).hide();
		$(id).html(data);
		$(id).fadeIn();
	});    

}


function toggle_customer_type() {
	if ($('#customertype').val() == 'individual') {
		$("#section_company").hide();
		$("#section_individual").show();
	} else {
		$("#section_individual").hide();
		$("#section_company").show();
	}
}