// JavaScript Document

jQuery(document).ready(function($){
         
		 $("img.pereviz, img.endokrino, img.moyparket").css('opacity' , '.5').hover(function() 
	{ $(this).stop(true, true).animate ({ opacity : 1}, 500); },
	  function() { $(this).stop(true, true).animate ({ opacity : .5}, 500); 
	  });
		 
		 $("img.pereviz").click(function() { $("img.pereviz").wrap('<a href="http://www.pereviz.kiev.ua" target="blank"></a>'); });
		 $("img.endokrino").click(function() { $("img.endokrino").wrap('<a href="http://www.endokrino.com" target="blank"></a>'); });
		 $("img.moyparket").click(function() { $("img.moyparket").wrap('<a href="http://www.moyparket.com" target="blank"></a>'); });
		
		 // function to clear and reset input initial values
	   $("#tel, #name, #email, #bussines, #example, #pgbusername").focus(function() {
	if( this.value == this.defaultValue ) {
		this.value = "";
	}
}).blur(function() {
	if( !this.value.length ) {
		this.value = this.defaultValue;
	}
});
      
                                 });
