jQuery(document).ready(function() {
	h1 = jQuery(window).height();	
	h2 =(h1-652)/2;
	if(h2>0){
		jQuery('body').css('padding-top', h2);
	}		
	jQuery(window).resize(function() {
		h1 = jQuery(window).height();	
		h2 =(h1-652)/2;
		if(h2>0){
			jQuery('body').css('padding-top', h2);
		}
	});
	links = jQuery('.brands_gallery.sommer li a img');
	src= jQuery('.page_img img').attr('alt');
	
	for(i=0;i<links.length;i++){
		atr = jQuery(links[i]).attr('src');
		atr2 = jQuery(links[i]).attr('alt');		
				
		if(atr2==src){
			jQuery(links[i]).parent().parent().remove();
		}
		else{
			jQuery(links[i]).parent().attr('href',atr);
		}
		
	}
	
});
