var selects = new Object();


(function($){

	$html = $('html');
	// verifica o browser
	$.fn.browser = function() {
		var	c = "",
			n = navigator.platform || "";
	  // Navegator
		if ( $.browser.msie ) {
				c = "msie";
		} else if ( $.browser.mozilla ) {
				c = "mozilla";
		} else if ( $.browser.safari ) {
				c = "safari";
		};
		c = c + " " + c + $.browser.version.substr(0,3).replace(/.0/g, "") + " ";
	  // OS
		if ( /Win/.test( navigator.platform ) ) {
				c += "windows";
		} else if ( /Mac/.test( navigator.platform ) ) {
				c += "mac";
		} else if ( /Linux/.test( navigator.platform ) ) {
				c += "linux";
		};
		$(this).addClass( c );
		return c;
	};    

	// ready
    $(document).ready(function(){
		
		$html.browser();
		
		$(".select-style.sel1").each(function() {
			selects[$(this).attr("id")] = new $.ComboBox({
				id:$(this).attr("id"),
				size:100,
				visibleItems: 10,
				shadow: false
			});
			selects[$(this).attr("id")].render();
		});
		
		$(".select-style.sel2").each(function() {
			selects[$(this).attr("id")] = new $.ComboBox({
				id:$(this).attr("id"),
				size:100,
				visibleItems: 7,
				shadow: false
			});
			selects[$(this).attr("id")].render();
		});
		
		$(".select-style.sel3").each(function() {
			selects[$(this).attr("id")] = new $.ComboBox({
				id:$(this).attr("id"),
				size:100,
				shadow: false
			});
			selects[$(this).attr("id")].render();
		});
		
		// Redireciona para o empreendimento selecionado
		$('#lista1').change(function(){
			if($('#lista1 option:selected').val() != '')
			{
				if(($('#lista1 option:selected').text() == 'Terras Alpha Petrolina') || ($('#lista1 option:selected').text() == 'Conceito A') || ($('#lista1 option:selected').text() == 'Terras Alpha Maricá') || ($('#lista1 option:selected').text() == 'Terras Alpha Resende') || ($('#lista1 option:selected').text() == 'Terras Alpha Foz do Iguaçu') || ($('#lista1 option:selected').text() == 'Terras Alpha Foz do Iguaçu 2'))
				{
					window.open( $('#lista1 option:selected').val() , '_blank');
				}
				else{
					location.href = $('#lista1 option:selected').val();
				}
			}
		});
		
		if($('#lista1-items li').attr('index') == 1)
			$(this).addClass('color1');
		
		window.setTimeout(function(){
			$('#lista1-items li').each(function(){
				if(($(this).attr('index') == 1) ||($(this).attr('index') == 8) || ($(this).attr('index') == 28) || ($(this).attr('index') == 35) || ($(this).attr('index') == 55))
					$(this).addClass('color1');
			});
		},2000)
		
		// cycle
		$(function() {
			var time = 0;
			$('ul.cycle-destaques').cycle({
				fx: 'fade',
				speed: 1500,
				activePagerClass: 'active',
				timeout: 8000,
				pager: '#pager'
			});
			
			$('#pager a').each(function(i){
				$(this).html($($('#items li')[i]).html()).attr('class', 'link'+i);
			});
			$('#pager a:first').addClass('activeSlide');
			$('#items').remove();
		}); 
		
		
		
	});
})( jQuery );
