$(function(){
	// signup de newsletter
	$('div#newsletter_signup form').live('submit', function(e){
		e.preventDefault();
		$(this).ajaxSubmit({
			target: 'div#newsletter_signup',
			success: function() {
				initPlaceholder();
			}
		});
	});
	
	// marquee de noticias
	$('div.news marquee').marquee('pointer').mouseover(function () {
	  $(this).trigger('stop');
	}).mouseout(function () {
	  $(this).trigger('start');
	}).mousemove(function (event) {
	  if ($(this).data('drag') == true) {
	    this.scrollTop = $(this).data('scrollY') + ($(this).data('y') - event.clientY);
	  }
	}).mousedown(function (event) {
	  $(this).data('drag', true).data('y', event.clientY).data('scrollY', this.scrollTop);
	}).mouseup(function () {
	  $(this).data('drag', false);
	});
});
