$(function() {
		   
	$(".png").supersleight();

	$("a").click(function(){
		var href = $(this).attr("href");
		if(href == "#"){
			return false;
		}
	});
	
	$('hr').wrap('<div class="hr" />');

	$(".column-main .text img").each(function(){
		var align = $(this).attr("align");
		if(align == "left") $(this).addClass("left");
		else if(align == "right") $(this).addClass("right");
	});

	$("form#search-form input").focus(function(){
		$(this).closest("form").addClass("focused");
		var val = $(this).val();
		if(val == "SEARCH") $("#keyword").val("");
	});
	$("form#search-form input").blur(function(){
		$(this).closest("form").removeClass("focused");
		var val = $(this).val();
		if(val == "") $("#keyword").val("SEARCH");
	});
	$("form#search-form").submit(function(){
		var val = $("#keyword").val();
		if(val == "SEARCH" || val == ""){
			alert("Please enter keyword");
			return false;
		}
	});

	$("li.parent").hover(function(){
		$(this).stop().find("ul").show();
	},function(){
		$(this).stop().find("ul").hide();
	});

});
