$(document).ready(function()
{
    // default account
    // $.gaTracker('UA-9664016-1');
    // TLC Marketing 6 -> 6665 Special K
    $.gaTracker('UA-7297903-10');
    
    // images fix
    // rewrite all src URLs
    var directory = '6665specialk/';
    var theme = '6665specialk';
    
    $('img').each(function()
    {
	if(!$(this).attr('src').match(theme))
	{
	    var tmp = $(this).attr('src');
	    $(this).attr('src',(directory ? '/'+directory+'theme/'+theme+'/'+tmp : tmp));
	}
    });
});