$(document).ready(function() {
	var vl = $("#search").attr("value");
	$("#search").focus(function () {
		if ($(this).attr("value") == vl) $(this).attr("value", "");
	}).blur(function () {
		if ($(this).attr("value") == "") $(this).attr("value", vl);
	});

/*
	$(".accordion").accordion({
		animated: false,
		header: "h2",
		autoheight: false
	});
*/

	$(".lightbox a").lightBox();
});