﻿$(document).ready(function() {
	$("a.lightbox").lightBox();

	$("input[type='text']").focus(function() {
		if (this.value == this.defaultValue) this.value = "";
	});
	$("input[type='text']").blur(function() {
		if (this.value == "") this.value = (this.defaultValue ? this.defaultValue : "");
	});


	if (jQuery.browser.msie == true && (jQuery.browser.version.substring(0, 1) == "7" || jQuery.browser.version.substring(0, 1) == "6")) {
	} else {
		$("#top ul li").mouseover(function() {
			$("#top ul li ul").css("display", "none");
			$(this).children("ul").css("display", "block");
		});
		$("#top ul li").mouseout(function() {
			$("#top ul li ul").css("display", "none");
		});
	}
});

Cufon.replace("h2, h3, h4, h5");