/*
  Custom ready function
  This should be used to reposition elements or to define and use custom functions
*/
$(document).ready(function(){

        $('#main').before($('#temp'));
		$('#header').prepend($('#temp_2'));
		$('#h_one').after($('#temp_3'));
		$('#main').prepend($('#temp_articles'));
		if($('.faqs_div').length == 0){ //special case for faq and learning center page
	       $('#main p').eq(0).after($('#temp_articles'));
	    }
    
        //remove netquote footer info (in frame)
        $('.Footer').attr('style', 'display:none;');
    	$('form:eq(0) input[type=text]:eq(0)').focus();

});//ready



