// JavaScript Document
if (!window.console) {
	window.console = {
		log: function() {
			alert(arguments[0]);	
		}
	}
}
$(window).bind("load",function(){
	$.datepicker.setDefaults($.datepicker.regional['']);
	$(".demojs").each(function () {
		$(this).before('<div class="codeLink"></div>' +
			'<pre style="display: none;">' + $(this).html() + '</pre>');
		$('.codeLink').click(function() {
			$(this).hide().siblings('pre').show();
		});
		eval($(this).html());
	});
});