$(document).ready(function() {
	$(".left li  , .right li").click(function() {
		if(this.className!='') {
			$(".body").children().hide();
			var toggler='.body .'+this.className;
			$(toggler).fadeIn();
		}
	});
	$(".left li  , .right li").hover(function() {
		if(this.className!='') {
			var hoverler='.'+this.className+' img';
			$(hoverler).show();
		}
	},
	function(){
		if(this.className!='') {
			var hoverler='.'+this.className+' img';
			$(hoverler).hide();
		}
	}
	);
});
jQuery(document).ready(function($) {
  $('a[rel*=facebox]').facebox()
}) 
function CallAlert(image,mode) //used with upload.php that file sends image and starts this function.
{
if (mode == 'upload') document.getElementById('status').innerHTML = 'you uploaded ' + image;
if (mode == 'show') 
{
	image = '<img width="200px" height="200px" src="http://'+image+'"/>';
	document.getElementById('preview').innerHTML = image;
}
}
