$(document).ready(function(){
	$('a#image').bind('click', function (){
		  $(this).addClass("photoloaded");
          var toLoadh = $(".photoloaded").attr('href');
          var toLoads = $(".photoloaded img").attr('src');
          $('.poza a.image').attr('href',toLoadh);
          $('.poza a.image img').attr('src',toLoads);
          $(this).removeClass("photoloaded");
          return false;
      });

	$('.listappend').bind('click', function (){
          var toLoad = $(this).attr('title');
          $('.toAppend').attr('value',toLoad);
          return false;
      });

	$(".poza a").fancybox({
		'titleShow'     : false,
		'transitionIn'	: 'elastic',
		'transitionOut'	: 'elastic'
	});
	$(".iframe2").fancybox({
		'autoDimensions': false,
		'width': 580,
		'height': 360,
		'hideOnContentClick': false,
		ajax : {
		    type	: "POST",
		    data	: 'page=sh'
		}
	});
	$("a#elementz").fancybox({
		autoScale: false,
        transitionIn: 'none',
		transitionOut: 'none',
		type: 'iframe',
		width: 400,
		height: 440,
		autoDimensions: false,
		hideOnContentClick: false,
		onClosed: function(){
			setTimeout('window.location.reload()', 1)}
	});
	$("#toLoads #elements").bind('click', function (){
		var toLoad = $(this).attr('href');
		$("#toLoads").load(toLoad,{ 'page': "shelem" });
		return false;
	});
	$("#admin_items").bind('click', function (){
		var toLoad = $(this).attr('href');
		$(".content .text").load(toLoad,{ 'page': "shelem" });
		return false;
	});
});

