// ------------------------------------------------------------- //
//	jtabs.js v0.1.0                                    20/06/07	 //
//                                                               //	
//	INFORMATION                                                  //
//	 - Version  :v0.1.0                                          //
//	 - Author   :Kaoru Ishikura	                                 //
//	 - E-Mail   :ishikura@sakura-creative.com                    //
//	 - HomePage :http://www.sakura-creative.com/                 //
//                                                               //
//	Copyright (C) 2008 SAKURA CREATIVE.Inc All Rights Reserved.	 //
// ------------------------------------------------------------- //

jQuery.noConflict();
var $j = jQuery;

$j(function() {
	$j(".next_btn").find("a").click(function() {
		$j(this).parent().parent().parent().find("h2").css("backgroundImage", "url(/img/collection/collection_h2_no2.jpg)");
		$j(this).parent().hide().parent().eq(0).children().eq(1).show();
		$j(this).parent().parent().parent().find(".article").eq(0).hide();
		$j(this).parent().parent().parent().find(".article").eq(1).show();
		return false;
	});
	$j(".back_btn").find("a").click(function() {
		$j(this).parent().parent().parent().find("h2").css("backgroundImage", "url(/img/collection/collection_h2_no1.jpg)");
		$j(this).parent().hide().parent().eq(0).children().eq(0).show();
		$j(this).parent().parent().parent().find(".article").eq(1).hide();
		$j(this).parent().parent().parent().find(".article").eq(0).show();
		return false;
	});
});
