$(document).ready(function()
{
    // 6858 Greenseas
    $.gaTracker('UA-7297903-19');
    
    
    // images fix
    // rewrite all src URLs
    var theme = 'greenseas';
    var directory = theme+'/';
    
    
    $('img').each(function()
    {
	if(!$(this).attr('src').match(theme))
	{
	    var tmp = $(this).attr('src');
	    $(this).attr('src',(directory ? '/'+directory+'theme/'+theme+'/'+tmp : tmp));
	}
    });
});