$(document).ready(function(){
	$("#home_page #art")
		.addClass("pics")
		.append($("<img src='images/homeart/home_art_02.jpg' alt='' width='394' height='232' \/> <img src='images/homeart/home_art_03.jpg' alt='' width='394' height='232' \/>"))
		.wrap("<div style='height:260px;position:relative;'></div>")
		.cycle("zoom");
	
	
	//gallery
	var a = $("#gallery_page #thumbnails li a");
	a.eq(0).addClass("current");
	a.each(function(){
		$(this).click(function(){
			var this_href = $(this).attr("href");
			$("#pic").fadeOut("slow", function(){$("#pic").load(this_href)}).fadeIn("slow");
			a.removeClass("current");
			$(this).addClass("current");
			return false;
		});
	});

});