jQuery(document).ready(function() {
	
	$('.line').livequery('click', function(e) {
		if (e.target.className == 'btn'||e.target.className == 'btn-2') {return;}
		window.location = $(this).contents().find("a").eq(0).attr('href');
		return false;
	});

    $('#search-load-more').livequery('click', function(){
		var me = $(this);
		var page = me.attr('href');
		var hash = me.attr('rel');
		$("<div>").load(page+" "+hash, function() {
			$(hash).append($(this).find(hash).html());
			me.parent().remove();
		});
		return false;
	});



$(function() {
      $("#toppmenyNoCacheLoginReplacementToken").load("/SamboWeb/mobil/toppmenyLogin.do");
});
});
























