$(document).ready(function(){
	$(".more").click(function(){
		$(".fixH").height('auto');
		$(this).toggle();
		$(".less").toggle();
		return false;
	});
	$(".less").click(function(){
		$(".fixH").height(370);
		$(this).toggle();
		$(".more").toggle();
		return false;
	});

	$(".togImg").hover(function(){
	  var parent = $(this);
	  var rel = $(this).attr("rel");
	  $(this).hide();
	  $(this).next().show();
	  $.get(rel,function(data) {
	  	parent.next().children("div").html(data);
	  });
	  $(this).next().mouseout(function(){
	  	parent.show();
	  	$(this).hide();
	  });
	},function(){
	  //nothing :)
	});

	$("#searchBut").click(function(){
		var keyword = $("#keyword").val();
		if(keyword) {
			window.location = "/search/"+keyword+"/";
		}
		else {
			alert("Please specify a keyword");
		}
		return false;
	});
});