index.html で javascript を実行すると正常に動作しますが、それを js ファイルとして分離したかったので、aram.js を作成し、それにコードを追加して、次の行もインデックスに含めました。
<script type="text/javascript" src="aram.js"></script>
aram.js:
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
$(function() {
$('#accordion > li').hover(
function () {
var $this = $(this);
$this.stop().animate({'width':'480px'},500);
$('.heading',$this).stop(true,true).fadeOut();
$('.bgDescription',$this).stop(true,true).slideDown(500);
$('.description',$this).stop(true,true).fadeIn();
},
function () {
var $this = $(this);
$this.stop().animate({'width':'115px'},1000);
$('.heading',$this).stop(true,true).fadeIn();
$('.description',$this).stop(true,true).fadeOut(500);
$('.bgDescription',$this).stop(true,true).slideUp(700);
}
);
});
問題は、次の行のように index.html に含まれる css フォルダーに style.css がある css が見つからないことだと思います。
<link rel="stylesheet" href="css/style.css" type="text/css" media="screen"/>