var $ = jQuery.noConflict();

//Click scripts for navigation...
$("#nav_portfolio").click(function(e) {
    document.location.href='index.html';
});

$("#nav_testimonials").click(function(e) {
    document.location.href='testimonials.html';
});

$("#nav_resume").click(function(e) {
    document.location.href='resume.html';
});

$("#nav_about").click(function(e) {
    document.location.href='about.html';
});

$("#nav_contact").click(function(e) {
    document.location.href='contact.html';
});

$("#kw_logo").click(function(e) {
    document.location.href='index.html';
});

