$(document).ready(function(){
	$('.hidden_and_show').each(function(){
	      $(this).animate({opacity:'0.3'},1);
	      $(this).mouseover(function(){
	          $(this).stop().animate({opacity:'1'},500);
	      });
	      $(this).mouseout(function(){
	          $(this).stop().animate({opacity:'0.6'},500);
	      });
	});
});
	/* For Links */
	function showOneImage(th) {
			$(document).ready(function() {
				var elll = document.createElement('a');
				elll.setAttribute('id', 'one_image_fancy_box');
				elll.setAttribute('href', th);
				document.body.appendChild(elll);
				$('#one_image_fancy_box').fancybox();
				$('#one_image_fancy_box').click();
				document.body.removeChild(document.getElementById('one_image_fancy_box'));
			});
			
	}

	/*For orders*/
	function replaceBtn(btnID, blockID){
		var elem = document.getElementById(btnID);
		if(elem === null){
		}else
		//if (elem != NULL)
		{
			elem.onclick = function(){
				this.style.display = 'none';
				document.getElementById(blockID).style.display = 'block';
			}
		}
	}
	
	window.onload = function(){
		replaceBtn('order_link', 'yaBlock');
	}

