$(document).ready(function()
{
    $.gaTracker('UA-7297903-36');
    var theme = '6759tefal';
    
    

    $.extend({vars: { config: new Object}});
    if(location.host.match('tlc-rewards.com'))
    {
		path = window.location.pathname.split('/');
		var config = { directory: path[1], theme: theme };
		$.extend($.vars.config,config);
    }
    else
    {
		var config = { theme: theme };
		$.extend($.vars.config,config);
    }
	$('img').each(function()
	{
		if(!$(this).attr('src').match($.vars.config.theme))
		{
			var tmp = $(this).attr('src');
			$(this).attr('src',($.vars.config.directory ? '/'+$.vars.config.directory: '') +'/theme/'+$.vars.config.theme+'/'+tmp);
		}
	});    
});
