$(document).ready(function(){ 
    $("#show").hide();
	$("#preview a").click(function(){
	    $("#preview").fadeTo("slow",0,function(){
	        $(this).hide();
	        $("#show").fadeTo("slow",1,function(){$(this).show()}); 
	    });
	    return false;
	});
	$("#show a").click(function(){
	    $("#show").fadeTo("slow",0,function(){
	        $(this).hide();
	        $("#preview").fadeTo("slow",1,function(){$(this).show()});  
	    });
	    return false;
	});

        $('li.lang span').click(function () {
           document.location=doc_root + $(this).attr('class') + '/';
        });
	$('#footer a').mouseover(function () {
		var rel = $('img',this).attr('rel');
		var src = $('img',this).attr('src');
		$('img',this).attr('rel', src);
		$('img',this).attr('src', rel);
	});
	$('#footer a').mouseout(function () {
		var rel = $('img',this).attr('rel');
		var src = $('img',this).attr('src');
		$('img',this).attr('rel', src);
		$('img',this).attr('src', rel);
	});	
});

var pic1= new Image(10,10); 
pic1.src="/images/ikona-fb_b.png"; 
