jQuery.noConflict()(function(){

    jQuery("#nav a").mouseenter(function(){
	  jQuery(this).stop().animate({

	    opacity: 0.7,
	    marginLeft: "-0.2in",
	    marginRight: "-0.2in",
	    fontSize: "3em"
		
	  }, 500 ).delay(500);
	});
	       jQuery("#nav a").mouseleave(function(){
	  jQuery(this).stop().animate({

	    opacity: 1.0,
	    marginLeft: "6px",
		marginRight: "10px",
	    fontSize: "1.2em"
	  }, 300 );
	});
	jQuery('#bragli').click(function(){

		jQuery('#wp_grins').css('top', jQuery('#bragli').position().top-100+"px");
		jQuery('#wp_grins').css('left', "10px");
		jQuery('#wp_grins').fadeIn(200);
		jQuery('#bragli').fadeOut(400,function()
		{
		
		if (jQuery('#bragli').data("hide")) 
			{
			jQuery('#bragli').html("ПОКАЗАТЬ <br> СМАЙЛЫ"); 
			jQuery('#wp_grins').fadeOut(200);
			jQuery('#bragli').data("hide",0);
			}
			else
				{
				jQuery('#bragli').data("hide",1);
				jQuery('#bragli').html("СКРЫТЬ <br> СМАЙЛЫ");
				}
		}
		)
		.fadeIn();
		
		
		});
	jQuery('#comment').focus(function() {
	jQuery('#bragli').fadeIn();
	});
});




