$(document).ready(function(){
	$('#movestr').css('visibility','visible');
    var text;
    $('#subscribe form input[type=text]').focus(function(){
        text = $(this).attr("value");
		if(text == "введите ваш email")
			$(this).attr("value","");
    });
    $('#subscribe form input[type=text]').blur(function(){
		if(!$(this).attr("value"))
			$(this).attr("value",text);
    });

	$('#countryimg a').addClass('highslide');
	$('#countryimg a').click(function(){return hs.expand(this)});
    $('#poll form input[type=radio]').css("position","relative");
    $('#poll form input[type=radio]').css("left","-9999px");
	$('#poll form input[type=radio]').css("height","0px");
	$('#poll form input[type=radio]').css("width","0px");
	$('#poll form input[type=radio]').css("float","left");
	$('#poll form label').addClass('input');
    $('#poll form label').click(function(){
        var ch = $(this).attr('for');
		$(ch).attr('checked','checked');
        $('#poll form label').css('background-position','0 0');
		$(this).css('background-position','0 -25px');
        
    });
    $('#poll form input[type=radio]').change(function(){$('#poll form').submit();})
	$('.part_countries li a').hover(function(){
		$(this).children('img').stop().animate({
			width:"25px",
			height:"25px"
			}, 150);
		},
									function(){
		$(this).children('img').stop().animate({
			width:"18px",
			height:"18px"
		}, 150); }
    );
        
  $('a.fading').click(function(){
 	if($(this).parent("h5").parent("li").children('.pages_links').css('display') != "none")
		$(this).parent("h5").parent("li").children('.pages_links').slideUp('200');
	else
		$(this).parent("h5").parent("li").children('.pages_links').slideDown('200');
  });
})
hs.graphicsDir = '/html/img/graphics/';
hs.wrapperClassName = 'wide-border';
hs.transitions = ['expand', 'crossfade'];
