var $j = $.noConflict();
$j(document).ready(function() {
						 
// Question 1
$j('#question_1').click(function(){
$j.scrollTo('#answer_1', {duration: 500, onAfter:function(){
$j('#answer_1_text').highlightFade({color:'rgb(255, 189, 112)', speed: 500});
} });
});

// Question 2

$j('#question_2').click(function(){
$j.scrollTo('#answer_2', {duration: 500, onAfter:function(){
$j('#answer_2_text').highlightFade({color:'rgb(255, 189, 112)', speed: 500});
} });
});

// Question 3
$j('#question_3').click(function(){
$j.scrollTo('#answer_3', {duration: 500, onAfter:function(){
$j('#answer_3_text').highlightFade({color:'rgb(255, 189, 112)', speed: 500});
} });
});

// Question 4
$j('#question_4').click(function(){
$j.scrollTo('#answer_4', {duration: 500, onAfter:function(){
$j('#answer_4_text').highlightFade({color:'rgb(255, 189, 112)', speed: 500});
} });
});

// Question 5
$j('#question_5').click(function(){
$j.scrollTo('#answer_5', {duration: 500, onAfter:function(){
$j('#answer_5_text').highlightFade({color:'rgb(255, 189, 112)', speed: 500});
} });
});

// Question 6
$j('#question_6').click(function(){
$j.scrollTo('#answer_6', {duration: 500, onAfter:function(){
$j('#answer_6_text').highlightFade({color:'rgb(255, 189, 112)', speed: 500});
} });
});

// Question 7
$j('#question_7').click(function(){
$j.scrollTo('#answer_7', {duration: 500, onAfter:function(){
$j('#answer_7_text').highlightFade({color:'rgb(255, 189, 112)', speed: 500});
} });
});

// Go To TOP

$j('.go_to_top').click(function(){

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

});

});
