<!-- this is for the smooth scroll -->
jQuery(document).ready(function() {
  jQuery.localScroll();
});

<!-- this is for the portfolio section hide and reveal -->
var showLogo = function() {
jQuery('#portfolio_websites').hide();
jQuery('#portfolio_html').hide();
jQuery('#portfolio_print').hide();
jQuery('#portfolio_logo').fadeIn('slow');
};

var showWebsites = function() {
jQuery('#portfolio_websites').fadeIn('slow');
jQuery('#portfolio_html').hide();
jQuery('#portfolio_print').hide();
jQuery('#portfolio_logo').hide();
};

var showHtml = function() {
jQuery('#portfolio_websites').hide();
jQuery('#portfolio_html').fadeIn('slow');
jQuery('#portfolio_print').hide();
jQuery('#portfolio_logo').hide();
};

var showPrint = function() {
jQuery('#portfolio_websites').hide();
jQuery('#portfolio_html').hide();
jQuery('#portfolio_print').fadeIn('slow');
jQuery('#portfolio_logo').hide();
};

<!-- this is for lightbox-->
$(function() {
	$('#portfolio_websites a').lightBox();
    });
 
$(function() {
	$('#portfolio_html a').lightBox();
    });
    
$(function() {
	$('#portfolio_print a').lightBox();
    });
    
	
$(function() {
	$('#portfolio_logo a').lightBox();
    });

$(function() {
	$('#index_right a').lightBox();
    });
    

	
