var current = "pic_1";
$(document).ready( function() {

	$( function() {
		$("#tabs").tabs();
		$("#tabs").tabs('select','tabs-1');
	});

	initPictures();

});

function initPictures(){
	$(".image_gallerybox a").bind('click', function() {
		$('#image_gallery_left_large').attr("src", $(this).attr("href"));
		current = $(this).attr("id");
		return false;
	});
	$(".image_colorbox a").bind("click", ajaxCallPictures);
}

function ajaxCallPictures() {
	//$("#color-desc").html($(this).attr("title"));
	url = $(this).attr("href");
	var randomnumber = Math.floor(Math.random() * 101); //random AJAX id
	$.ajax( {
		type : "POST",
		url : url + "?ajaxid=" + randomnumber,
		cache : false,
		success : ajaxReturnPictures
	});

	return false;
}
function ajaxReturnPictures(response, value)
{
	
	eval('var myjson='+response +';');
	 $(".image_gallerybox").html(myjson.data)
	 $('#image_gallery_left_large').attr("src", $("#"+current).attr("href"));
	 $("#color-desc").html(myjson.color)
	 initPictures();
}
