$(document).ready(function(){ 
	$(document).pngFix();
	
	$("#slider").easySlider({
		auto: true, 
		continuous: true,
		numeric: true
	});
	
	$("input").focus(function () {							   
		$(this).val('');
    });
});

function clearDefault(el) {
if (el.defaultValue==el.value) el.value = ""
}

