/*

PluginWP
http://www.pluginwp.com.br
*/

/* =Realistic Navigation
============================================================================== */

	// Inicio jQuery
	

$(document).ready(function() {
	    $("a.b_criacao, a.b_design, a.b_web, a.b_contato").click(function() {

	        $("#ajax-content").empty().append("<div id='loading' class='load_home' ><img src='img/icon_carregando.gif' alt='Loading' /></div>");
	        $("a.b_criacao, a.b_design, a.b_web, a.b_contato").removeClass('current');
	        $(this).addClass('current');
	        $.ajax({ url: this.href, success: function(html) {
	            $("#ajax-content").empty().append(html);     }
    });
    return false;
    });
});


