so i have to move this code, from the <head></head> into header. php to functions. php ?
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<?php
/*************************************************************/
/************LOAD SCRIPTS***********************************/
/*************************************************************/
wp_deregister_script('jquery');
wp_register_script('jquery', get_template_directory_uri().'/script/jquery/jquery-1.7.2.min.js');
wp_register_script('jquery', get_template_directory_uri().'/script/jquery/js.js');
wp_register_script('jquery', get_template_directory_uri().'/script/jquery/jquery.stellar.min.js');
wp_register_script('jquery', get_template_directory_uri().'/script/jquery/waypoints.min.js');
wp_register_script('jquery', get_template_directory_uri().'/script/jquery/jquery.easing.1.3.js');
wp_enqueue_script('jquery');
wp_enqueue_script('ajaxpager', get_template_directory_uri() . '/script/quickpager/quickpager.jquery.js');
wp_enqueue_script('my-commons', get_template_directory_uri().'/script/common.js' );
wp_enqueue_script('elastic', get_template_directory_uri().'/script/elastic/jquery.elastic.source.js' );
wp_enqueue_script('jscolor', get_template_directory_uri().'/script/jscolor/jscolor.js' );
if ( is_singular() ) wp_enqueue_script( 'comment-reply' );
?>