	$(function(){
		$('.infoBoxContents .categories li').last().addClass('last_list');
		$('.infoBoxContents .information li').last().addClass('last_list');
		$('.infoBoxContents .bestsellers li').last().addClass('last_list');
		$('.contentPadd h3').first().addClass('first_h3');
		$('.contentInfoText').last().addClass('marg-top');
		$('.loginPage .contentInfoText').addClass('marg-top');
		$('#piGal ul.thumbs li').first().css('margin-right','0px');
	});

	
$(document).ready(function(){
  
  //Catches any thumbs that are too tall and shrinks them
  $('.prods_table .pic_padd img').each(function(){
    var height = $(this).height();
    if (height > 130 ){
      $(this).removeAttr('width');
      $(this).height(130);
    }
  });
});
