$(function() {
	$("ul.description li:last").addClass("price");
	var tabContainers = $('div.tabcontent div.tabs-cont div.boxtabcontent');
	tabContainers.hide().filter(':first').show();
	
	$('div.tabcontent ul.mainmenu a').click(function () {
		tabContainers.hide();
		tabContainers.filter(this.hash).fadeIn("slow");
		$('div.tabcontent ul.mainmenu a').removeClass('selected');
		$(this).addClass('selected');
		return false;
	}).filter(':first').click();
});

function show_object( id ){
    window.open('/object/'+id+'.html','','width=800,height=600,scrollbars=1')
}
function update_img ( img ){
     $('#img_block').hide('1000'); 
    $("#img_block").attr({ 
    src: "/uploads/objects/"+img
});
     $('#img_block').show('1000');     
}
