/*
 * jquery.colorbox_gallery_patch.js
 *
 */
 


$(function(){
	
	var css = $("html").attr("class");
	// colorbox
	if(css != "gallery") {
		$("a#gallery").colorbox({contentWidth:"100%", contentHeight: "100%"});
	}
	
	$("a#gallery").click(function () {
		$("html").addClass('gallery');
		
		// for IE6
		if($("#cboxslideWrap"))
			$("#cboxslideWrap").show();
	});
	$("#cboxClose").click( function() {
		$("html").removeClass('gallery');
	});
	
	$(window).bind('resize', function() {
		
		// 画像の個数によって大きさを調節
		var $size = $("#cboxThumbnail ul.ulFirst li").size();
		
		var $padding_total = $size * 10;
		var $thum_box_width = $("div#cboxThumbnail").width();
		var $thum_box_width_in = $thum_box_width - $padding_total;
		var $thum_width = Math.floor($thum_box_width_in / $size);
		
		$("div#cboxThumbnail img").css("width", $thum_width);
		
	});
			
});
