//flash area
$(function() {
    $('#slider').after('<div id="nav" class="nav">').cycle({
        fx:     'fade',
        speed:  500,
        timeout: 6000,
        pager:  '#nav',
        pause: 'pause on hover',
        before: function() { if (window.console) console.log(this.src); }
    });
});


//shop info tab
$(function() {
	$('#shopinfo .tabs li').click(function() {
		$('#shopinfo .tabs li').removeClass('active');
		$(this).addClass('active');
		$('#shopinfo .tab_box').hide();

		var select = $(this).find('a').attr('href');
		$(select).fadeIn("easeOutCubic");

		return false;
	});

});
