// JavaScript Document
$(document).ready(function(){
	$(".head_area_5 div").mouseover(function(){
		$(this).css("background-image","url(images/head_img_2.gif)").css("font-weight","bold");
	}).mouseout(function(){
		$(this).css("background-image","url()").css("font-weight","normal");
	})
	$("#demo3").ScrollLeft({speed:12})
})
