			$(document).ready(function() {
				
				$('.pf_nav li a').click(function() {
					
					
					$('.pf_nav li').removeClass('selected');
					$(this).parent('li').addClass('selected');
					
					thisItem 	= $(this).attr('rel');
					
					if(thisItem != "all") {
					
						$('.pf_item2 li[rel~='+thisItem+']').stop()
																.animate({'width' : '220px', 
																			 'opacity' : 1, 
																			 'marginRight' : '20px', 
																			 'marginLeft' : '0px'
																			});
																			
						$('.pf_item2 li:not([rel~='+thisItem+'])').stop()
																.animate({'width' : 0, 
																			 'opacity' : 0,
																			 'marginRight' : 0, 
																			 'marginLeft' : 0
																			});
					} else {
						
						$('.pf_item2 li').stop()
										.animate({'opacity' : 1, 
													 'width' : '220px', 
													 'marginRight' : '20px', 
													 'marginLeft' : '0px'
													});
					}
				})
				
				$('.pf_item2 li img').animate({'opacity' : 1}).hover(function() {
					$(this).animate({'opacity' : 0.5});
				}, function() {
					$(this).animate({'opacity' : 1});
				});
				
			});
