﻿$(document).ready(function() {
							$('.banner').width($(window).width());
							$('#slides').slides({
								preload: true,
								preloadImage: '/imgs/loading.gif',
								slideEasing: "easeOutQuad",
								slideSpeed: 800,
								animationComplete: function(current) {
									$('.destaques_home').hide();
									var id = $('.banner:nth-child('+current+')').attr('id');
									id = id.replace('banner_', '');
									//alert(id);
									$('#destaques_home_'+id).show();
								},
								generatePagination: false,
								generateNextPrev: false,
								play: 6000,
								pause: 6000,
								hoverPause: true
							});
							$('#acc h3').click(function() {
								style = $(this).attr('style');
								if (style.indexOf('roll')>0)
									$(this).attr("style", "background:url(imgs/onde_comprar_cabecalho.png) no-repeat 0 0;")
								else
								   $(this).attr("style", "background:url(imgs/onde_comprar_cabecalho_roll.png) no-repeat 0 0;")                                 
							});                        
							//alert($('.banner:nth-child(1)').width());
						});					
