
$(document).ready(function() {
	if($('#landman-mainmenu  ul li:eq(0)').hasClass('active')) {
		$('#landman-mainmenu  ul li:eq(0)').children('a').html('<img src="images/home.gif">').css('padding-top', '17px');
	}
	
	$('#small-maps').tipsy({gravity: 's', offset: 20, fade: true, delay: 1000});
	
	$(window).scroll(function() {
		if($(this).scrollTop() > 600) {
			if(!$('#back-to-top').is(":visible")) {
				$('#back-to-top').fadeIn("slow");
			}
			$('#back-to-top').clearQueue();
			$('#back-to-top').animate({top: ($(this).scrollTop()-200-($("submenu").height() + $("extra-submenu").height())) + "px"}, 2000);
		} else {
			if($('#back-to-top').is(":visible")) {
				$('#back-to-top').clearQueue();
				$('#back-to-top').fadeOut(1000);
			}
		}
	});

	/*
	$('.product-list li div img:gt(1)').each(function() {
		$(this).load(function() {
			var index = $(this).index(this)
			$('.product-list li div img:eq('+(index+1)+')').css('display', '');
		});
	});
	*/
});



$(window).load(function() {
	
	$('.product-list li div img').each(function() {
		if($(this).width() > 636) { $(this).width(636); }
	});
});

