$(document).ready(function(){	
    //Toggle Menu
	$(".toggle_container").hide();

	$("h2.trigger").toggle(function(){
		$(this).addClass("active"); 
		}, function () {
		$(this).removeClass("active");
	});
	
	$("h2.trigger").click(function(){
		$(this).next(".toggle_container").slideToggle("slow");
	});
	
	//Equal Heights
	$(".coluna").equalHeights();
	
	//Slider
	$('#slider_area').cycle({ 
		fx: 'fade',
		speed: 200, 
	    timeout:  8000,
		cleartype:  1,
		pager:  '#numbers', 		
			pagerAnchorBuilder: function(idx) { 
				return '<li><a href="#" title="">' + (idx+1) + '</a></li>'; 
			} 
	});
	
	$('#slider_area').show();
	$('#patrocinadores').show(); 
	$('#nav').show(); 
	
	//patrocinadores (cycle)
	$('#patrocinadores').cycle('fade');
	
	//Fancybox
	$("a.modal").fancybox();
	
	//preload images
	var cache = [];
	// Arguments are image paths relative to the current page.
	$.preLoadImages = function() {
	var args_len = arguments.length;
	for (var i = args_len; i--;) {
	  var cacheImage = document.createElement('img');
	  cacheImage.src = arguments[i];
	  cache.push(cacheImage);
		}
	}

	jQuery.preLoadImages("http://institutocravoalbin.com.br/wp-content/themes/icca/images/bg_boxprod.jpg");
	
	//Box de produtos
	$('.box_prod').hover( function(){
		$(this).css('background', 'url("http://institutocravoalbin.com.br/wp-content/themes/icca/images/bg_boxprod.jpg") repeat-x left bottom');
		$(this).css('border', 'solid 1px #3F3F3F');		
	},
	function(){
		 $(this).css('background', 'none');
		 $(this).css('border', '1px solid #FFFFFF');
	});
	
	//Flashes
    $('#higienizacao').flash(
        { src: 'http://institutocravoalbin.com.br/wp-content/themes/icca/images/higienizacao.swf',
          width: 500,
          height: 300 },
        { version: 8 }
    );
    $('#informacao').flash(
        { src: 'http://institutocravoalbin.com.br/wp-content/themes/icca/images/informacao.swf',
          width: 500,
          height: 300 },
        { version: 8 }
    );
    $('#vinil').flash(
        { src: 'http://institutocravoalbin.com.br/wp-content/themes/icca/images/vinil.swf',
          width: 500,
          height: 300 },
        { version: 8 }
    );			
	
});



