jQuery(document).ready(function($) {
	//Full Caption Sliding (Hidden to Visible)
	$('.frame_product').hover(function(){
		$(".cover", this).stop().animate({top:'55px'},{queue:false,duration:55});
	}, function() {
		$(".cover", this).stop().animate({top:'74px'},{queue:false,duration:55});
	});
	// $('#tabs .bt_open_list').click(function(){
		// $("ul.sub_list").slideToggle();
	// });
	jQuery('#tabs .bt_open_list').each(function(){
		var sublist = $(this).siblings('.sub_list');
		$(this).bind('click',function(){
			if (sublist.is(':hidden')){
				sublist.slideDown('slow');
				$(this).addClass('bt_close_list');
			}
			else {
				sublist.slideUp('slow');
				$(this).removeClass('bt_close_list');
			}
		});
		//Button Color Intro
		jQuery('.intro_content a.bt_close').click(function(){
	        $(".intro_content").hide("slow");
			return false;
		});
	});
	//Button Color Intro
	jQuery('.intro_content a.bt_close').click(function(){
        $(".intro_content").hide("slow");
		$('#container .content_right .ui-tabs-vertical').css('display','block');
		return false;
	});
	
});
$(function() {
	$("#tabs").tabs().addClass('ui-tabs-vertical ui-helper-clearfix');
	$("#tabs li").removeClass('ui-corner-top').addClass('ui-corner-left');
});

