    $(document).ready(function() {
        $('a[rel=project-details]').each(function(){
            $(this).click(function(event){
                var p_id = $(this).attr('pid');
                
                $('#'+p_id+' > div:eq(0)').addClass('bordered-clip');
                 
                $('#'+p_id+' > div:eq(0)').hide('clip', {}, 1000, function(){
                    $('#'+p_id+' > div:eq(1)').show('clip', {}, 1000, function(){
                        $(this).removeClass('bordered-clip');
                    });
                });
                event.preventDefault();
            });
        });
        
        $('a[rel=close-project-details]').each(function(){
            $(this).click(function(event){
                var p_id = $(this).attr('pid');
                
                $('#'+p_id+' > div:eq(1)').addClass('bordered-clip');
                 
                $('#'+p_id+' > div:eq(1)').hide('clip', {}, 1000, function(){
                    $('#'+p_id+' > div:eq(0)').show('clip', {}, 1000, function(){
                        $(this).removeClass('bordered-clip');
                    });
                });
                event.preventDefault();
            });
        });
        
        
        // lightBox
         $('a[rel=lightbox]').lightBox({
		    overlayBgColor: '#000',
		    overlayOpacity: 0.75,
		    containerResizeSpeed: 450
		 });
        
    });

