jQuery(document).ready(function($){
	
	// ListMenu Styling
	
	$(function(){
		
		$("#topmenu ul li:last a").css("padding-right", "0");
		$("#topmenu ul li:last a").css("border-right", "none");
		
		$("#categories_header ul li:first a").css("margin-left", "0");
		$("#categories_header ul li:last a").css("margin-right", "0");

		$("#footermenu ul li:last a, #copyright ul li:last a").css("padding-right", "0");
		$("#footermenu ul li:last a, #copyright ul li:last a").css("border-right", "none");
		
		$("ol#bestsellers li.bestsellers-with-img:last").css("border-bottom", "none");
		$("ol#bestsellers li.bestsellers-with-img:last").css("padding-bottom", "0");
		$("ol#bestsellers li.bestsellers-with-img:last").css("margin-bottom", "0");
		
	});
	
	// Rescaling and centering Catalog Images
	
	function centeringThumb(targetDiv){
		
		var divHeight		= $(targetDiv).height();
		var divWidth		= $(targetDiv).width();		
			
		$(".productlist-thumb img").each(function(){			
			
			var imageHeight 	= $(this).height();
			var marginTop		= -(imageHeight - divHeight)/2;
						
			if (imageHeight < divHeight){
			
				$(this).css({
					"margin-top": marginTop
				});
					
			}else{
			
				$(this).addClass('vertical');
								
			}
				
		});
		
	}

	// de functies daadwerklijk laten draaien	
	$(window).load(function(){
		
		// deze voornamelijk voor Chrome		
		centeringThumb('.productlist-thumb');

	});
	
	// deze voor de rest	
	centeringThumb('.productlist-thumb');		
	
});
