$(document).ready(function() {
    //scroll adwords
        $(window).scroll(function () {
			if ($(this).scrollTop() > 300) {
				$('#adwords').show().stop().animate({
                    right : 42
                })/*.rotate({angle:0, 
                  animateTo:360,
                  duration:1000
                  })*/;
			} else {
				$('#adwords').hide().stop().animate({
                    right : -600
                })/*.rotate({angle:0, 
                  animateTo:-360,
                  duration:1000
                  })*/;
			}
		});
});
