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);

	$('#rotator').cycle({ 
		fx:     'fade', 
		speed:  500, 
		timeout: 0, 
		next:   '#next', 
		prev:   '#prev',
		cleartype: true
	});
	
	/* Hides the answers */
	$("#answers").hide();
	
	/* Mouse over function to handle cloning content of answer div for hover target */
	$("#seo_questions a").mouseover(function(e){
		var index = $("#seo_questions a").index(this);
		index++
		var txt = jQuery("#answer" + index).clone();
		$("#tooltip").html(txt);            
	
	});
	/* Mouse out function to clear content */
	$("#seo_questions a").mouseout(function(e){
		$("#tooltip").html('');            
	
	});
	
	//========================= TEXT SELECTOR =========================
	
	$('h1, div.post h1, h2.posttitle a').each(function(){
	var me = $(this);
	me.html( me.text().replace(/(^\w+)/,'<span class="bold_header">$1</span>') );
	});

	
});
	


