// fun-fan sign and icons theme

$(document).ready(function(){
    $(".bigbutton img").each(function(){
		str="background:  no-repeat url("+$(this).attr('src')+")";
		$(this).attr('src','http://skachat-besplatno.ru/design/frame/20100316-brwn.png');
		$(this).attr('style',str);		

	});

/*
// meerkat
$('#meerkat').meerkat({
	background: 'url(http://skachat-besplatno.ru/design/meerkat/meerkat-bot-bg.png) repeat-x left top',
	height: '120px',
	width: '100%',
	position: 'bottom',
	close: '.close-meerkat',
	dontShowAgain: '.dont-show',
	animationIn: 'slide',
	removeCookie: '#wrp',
	animationSpeed: 500,
	dontShowAgainAuto: true,
	cookieExpires: 1	
}).addClass('pos-bot');
*/

// menu colorer
$('.menu>p:even').css({'background-color':'#FCF7F1'});

});



function sticky_relocate() {
  var window_top = $(window).scrollTop();
  var div_top = $('#top').offset().top;
//  if (window_top > div_top)
    $('.menu').animate({ opacity: "1.0", top: window_top }, 150,"swing");
  }



// sticky menu
$(function() {
  $(window).scroll(sticky_relocate);
  sticky_relocate();
  });



