	$(document).ready(function(){
		$('.L').hide();
		$('.tab').click(function(){	
			var rel = $(this).attr('rel');
			$('.active').removeClass('active');
			$(this).parent().addClass('active');
			
			$('.productGrid').each(function(){
				if ($(this).hasClass(rel)) {
    				$(this).show();
				} else {
   					 $(this).hide();
				}
			});			
		});
		$('.pop').hover(function(){
			var im = $(this).attr('id')+'img';
			$(im).center();
			$(im).show('fast');
		});
	});
