function adjustLadyHeight() {
	var shop_content = $("#content.shop");
	
	/* The height of the lady measured from top until the beginning of the content */ 
	var top_height = 202;
	
	if( shop_content.length ) {
		$("#lady").height( shop_content.outerHeight() + top_height);
	}
}

jQuery.event.add(window, "load", adjustLadyHeight);

$(function() {
	$("#features input").addDefaultText();
	
	$("a").click(function() { 
	     $(this).blur(); 
	}); 
	$("a").mousedown(function() { 
	     $(this).blur(); 
	}); 
	
	$("#navigation a img, #paging a img").mouseover(function(){
		$(this).attr("src", $(this).attr("src").replace(".png", "_off.png"));
	});
	$("#navigation a img, #paging a img").mouseout(function(){
		$(this).attr("src", $(this).attr("src").replace("_off.png", ".png"));
	});
});
