// JavaScript Document
$.fn.cycle.transitions.scrollHorz = function($cont, $slides, opts) {
	$cont.css('overflow','hidden').width();
//	  $slides.show();
	opts.before.push(function(curr, next, opts, fwd) {
		$(this).show();
		var currW = curr.offsetWidth, nextW = next.offsetWidth;
		opts.cssBefore = fwd ? { left: nextW } : { left: -nextW };
		opts.animIn.left = 0;
		opts.animOut.left = fwd ? -currW : currW;
		$slides.not(curr).css(opts.cssBefore);
	});
	opts.cssFirst = { left: 0 };
	opts.cssAfter = { display: 'none' }
};

$(document).ready(function() {
	$('#lojasContainer').cycle({
		fx:'scrollHorz',
		timeout: 5000,
		speed: 1000,
		sync:1,
		pager:'#nav',
		after: function() {
			$('#texto').html("<a href='"+this.href+"'>"+this.title+"</a>");
			$('#legenda').html("<a href='"+this.href+"'>"+this.name+"</a>");
			}
	});
});

function loadFlash(archive, width, height, img){	
	document.write("<object type='application/x-shockwave-flash' data='"+  archive +"' width='"+ width +"' height='"+ height +" '><param name='movie' value='"+ archive +"' /><param name='wmode' value='transparent' /><img src='" + img + "' width='"+ width +"' height='"+ height +"' alt='' /></object>");	
}//function

$(document).ready(function()
{
	$('#listaFilmesWrap').jScrollPane({scrollbarWidth:10});

    $("#cadastroNewsletter input").focus(function () {
         $("#camposNewsletter").css('display','inline');
    });
    $("#btnFecharNews").click(function () {
         $("#camposNewsletter").css('display','none');
    });
});
