jQuery.noConflict();

// Put all your code in your document ready area

jQuery(document).ready(function ($) {

    // Do jQuery stuff using $ this where the functions need to go   


// ===============  LOGO FADE IN EFFECT  =============== 

    $('div#branding_left a').hide();
    $('div#branding_left a').fadeIn(1500).delay(3000);

});
	


