$(document).ready(function() {
	$('input[title!=""]').hint();
	$("div#nav ul:first").ohMenu();
	
	var zIndexNumber = 1000;
	$('div').each(function() {
		$(this).css('zIndex', zIndexNumber);
		zIndexNumber -= 10;
	});
});
