/**
 * Toggle no grid
 */

$(function() {
	
	$( 'a.js-showgrid' ).click( function( e ) {
		
		e.preventDefault();
		
		$( '.container' ).toggleClass( 'showgrid' );
		
	});
	
});

/**
 * Script movido diretamente para o tema...
 * Abre um link externo em uma nova janela
 */
/*
$(function() { 
	
	$( ".js-link-externo" ).click(function( e ){
		
		e.preventDefault();
		
		window.open( $(this).attr( 'href' ) );
		
	});

});
*/
