$(document).ready(function() {

	//get all link with class panel
	$('.steps a').click(function () {
        //scroll it to the destination
		if ($(this).attr('href') != "#")
		{
			$(window).scrollTo($(this).attr('href'), 800);
		}
        //cancel the link default behavior
		return false;
	});
	
	$('#link_top').click(function () {
        //scroll it to the destination
		if ($(this).attr('href') != "#")
		{
			$(window).scrollTo($(this).attr('href'), 800);
		}
        //cancel the link default behavior
		return false;
	});
	
	
	$('a[rel=external]').each( function(element){
		$(this).attr('target', '_blank');
	});	
	
});
