$(document).ready(function() {$(".tab_content").hide();$("ul#gallery_cont li:first").addClass("active").show(); $(".tab_content:first").show();$("ul#gallery_cont li").click(function() {$("ul#gallery_cont li").removeClass("active"); $(this).addClass("active"); $(".tab_content").hide(); var activeTab = $(this).find("a").attr("href"); $(activeTab).show(); return false;});$(function () {var images = new Array();images[0] = 'images/mond.jpg';images[1] = 'images/manot.jpg';images[2] = 'images/ruah.jpg';images[3] = 'images/yishai.jpg';images[4] = 'images/nili.jpg';images[5] = 'images/blog.jpg';$(".shadow").each(function(index,el){var img = new Image();$(img).load(function () {$(this).css('display','none'); $(el).removeClass('loading').append(this);$(this).fadeIn(); }).error(function () {$(el).remove();}).attr({src:images[index],height:"221",width:"221"});});});$(".thumbshow").hide(); $(".thumbpress").toggle(function() {var activeTab = $(this).attr("href"); $(this).find("span").text("Hide"); $(activeTab).customShow("fast", function() {}); return false;} , function () {var activeTab = $(this).attr("href"); $(activeTab).slideUp("slow"); $(this).find("span").text("Read More"); return false;});});