$(document).ready(function() {

// Web design
$('#webDesignLink').click(function(){

$.scrollTo('#a1', {duration: 500, onAfter:function(){
$('#a1-text').highlightFade({color:'rgb(193, 193, 193)', speed: 1500});
} });
});

// Web design 2
$('#webDesignLink2').click(function(){

$.scrollTo('#a1', {duration: 500, onAfter:function(){
$('#a1-text').highlightFade({color:'rgb(193, 193, 193)', speed: 1500});
} });
});

// Graphic design
$('#graphicDesignLink').click(function(){

$.scrollTo('#a2', {duration: 500, onAfter:function(){
$('#a2-text').highlightFade({color:'rgb(193, 193, 193)', speed: 1500});
} });
});

// Graphic design 2
$('#graphicDesignLink2').click(function(){

$.scrollTo('#a2', {duration: 500, onAfter:function(){
$('#a2-text').highlightFade({color:'rgb(193, 193, 193)', speed: 1500});
} });
});

// Illustration design
$('#illustrationLink').click(function(){

$.scrollTo('#a3', {duration: 500, onAfter:function(){
$('#a3-text').highlightFade({color:'rgb(193, 193, 193)', speed: 1500});
} });
});

// Illustration design 2
$('#illustrationLink2').click(function(){

$.scrollTo('#a3', {duration: 500, onAfter:function(){
$('#a3-text').highlightFade({color:'rgb(193, 193, 193)', speed: 1500});
} });
});

// Contact Us
$('#contactUsLink').click(function(){

$.scrollTo('#contact', {duration: 500, onAfter:function(){
$('.contact_text').highlightFade({color:'rgb(193, 193, 193)', speed: 1500});
} });
});

// Contact Us
$('#contactUsLink2').click(function(){

$.scrollTo('#contact', {duration: 500, onAfter:function(){
$('.contact_text').highlightFade({color:'rgb(193, 193, 193)', speed: 1500});
} });
});

// Go To TOP

$('.backUp').click(function(){

$.scrollTo('#wrapper', {duration: 500});

});

});
