// JavaScript Document
 $(".smallgame_title2").bind('mouseout',function()
 {
	$(".smallgame_title2").css("background","url(../images/smallgame_1.gif)");
});
 $(".smallgame_title2").bind('mouseover',function()
 {
	$(".smallgame_title2").css("background","url(../images/smallgame_1_hover.gif)");
});
  $(".smallgame_title3").bind('mouseout',function()
 {
	$(".smallgame_title3").css("background","url(../images/smallgame_2.gif)");
});
   $(".smallgame_title3").bind('mouseover',function()
 {
	$(".smallgame_title3").css("background","url(../images/smallgame_2_hover.gif)");
});
