

jQuery(document).ready(function(){
        var  img_name = jQuery('.photo_thumb img').eq(0).attr('id');
         jQuery('#' + img_name).attr('class', 'active');
        jQuery("#main_frame").html("<img src='../../../wp-content/uploads/" + img_name +".jpg' />");
        
        
        jQuery(".photo_thumb img").click(function(){
             jQuery(".photo_thumb img").attr('class', 'photo');
             jQuery(this).attr('class', 'active');
            var img_id = jQuery(this).attr('id'); 
            jQuery("#main_frame").html("<img src='../../../wp-content/uploads/" + img_id +".jpg' />");
        })
});


jQuery(document).ready(function(){
        var page_id = jQuery(".nav_main").attr('id');
        //alert(page_id);
        switch (page_id)
        {
        case '4':           
             jQuery(".nav_block").eq(1).attr('id', 'active');
        break;
        case '34':           
             jQuery(".nav_block").eq(2).attr('id', 'active');
        break;
        case '36':           
             jQuery(".nav_block").eq(3).attr('id', 'active');
        break;
        case '315':           
             jQuery(".nav_block").eq(3).attr('id', 'active');
        break;
        case '399':
             jQuery(".nav_block").eq(3).attr('id', 'active');
        break;
             
        }
});








