/*********************** ANIMAÇÃO MENU **********************************/

$(document).ready(function()
{
	slide("#mainnav", 20, 10, 0, .8);
});

function slide(navigation_id, pad_out, pad_in, time, multiplier)
{
	// creates the target paths
	var list_elements = navigation_id + " li.menu-item";
	var link_elements = list_elements + " a";
	
	// initiates the timer used for the sliding animation
	var timer = 0;
	
	// creates the slide animation for all list elements 
	$(list_elements).each(function(i)
	{
		// margin left = - ([width of element] + [total vertical padding of element])
		$(this).css("margin-left","0px");
		// updates timer
		timer = (timer*multiplier + time);
		$(this).animate({ marginLeft: "0px" }, timer);
		$(this).animate({ marginRight: "0px" }, timer);
		$(this).animate({ marginRight: "0px" }, timer);
	});

	// creates the hover-slide effect for all link elements 		
	$(link_elements).each(function(i)
	{
		$(this).hover(
		function()
		{
			$(this).animate({ paddingRight: pad_out }, 150);
		},		
		function()
		{
			$(this).animate({ paddingRight: pad_in }, 150);
		});
	});
}


/*********************** VIDEOS os NextGen Gallery **********************************/

jQuery(document).ready(function($){
  $(".ngg-gallery-thumbnail a").each(function (arr){
    if ($(this).attr("title").substr(0,5)=="Video"){
      $(this).attr("rel","shadowbox;width=405;height=340");
      $(this).attr("href",$(this).children("img").attr("title"));
    }
  })
});
