var timerID;

function rolling(){

	$("#wom_show > .div_alpha_top02_inside").eq(1).hide();
	
	$("#wom_show > .div_alpha_top02_inside").eq(0).animate({ 
		opacity: 0.0,
		marginTop: "-66px"
	}, 1500 );

	$("#wom_show > .div_alpha_top02_inside").eq(1).fadeIn( 1500 );

	timerID = setTimeout('changing()',3000);
}

function changing(){
	$("#wom_show").append( $("#wom_show > .div_alpha_top02_inside").eq(0) );
	$("#wom_show > .div_alpha_top02_inside:last").css("margin-top", "0px");
	$("#wom_show > .div_alpha_top02_inside:last").css("opacity", "1.0");

	timerID = setTimeout('rolling()',3000);

}

$(document).ready(function(){	

	$(".div_alpha_top02_inside").click(function(){
		window.location = $(this).find("a").attr("href");
		return false;
	});


	$('#suggest')
        .suggest(
            '/suggest/suggest.php',
            {
                minchars : 1,
                onSelect : function() {$('#search_form').submit();}
            });

	timerID = setTimeout('rolling()',3000);
});
