// JavaScript Document7

jQuery(function(){

$('div[id^="tItem"]').hide();

$('div#tItem1').show();

$('.textScribble').click(function(){
								 
var tTitleId = $(this).attr("id");								  
var ttIdsubstr = tTitleId.substr(tTitleId.length - 1);
 //alert (ttIdsubstr);
$('.textScribble').removeClass("tActiveItem").addClass("tInActiveItem");
$(this).removeClass("tInActiveItem").addClass("tActiveItem");
var tThisItem = "#tItem" + ttIdsubstr;
								  
//alert (tThisItem);
								
// $('').removeClass("tActiveItem");
$('.tItems').hide();
$(tThisItem).show();
								  });
//$("#footer").width($(window).width()); 

jQuery.fn.center = function () { 
    this.css("position","relative"); 
    
    this.css("left", -300); 
    return this; 
} 
//$("#social-links").center();
}); ///end JQUERY

