/*
 * Report user's visited pages to Google analytics
 *
 * This script report user's visited pages through the tracking code to Google
 * Analytics. So it is possible to know the favorite sites of user. 
 * 
 * This script is based on the Aza's Raskin SocialHistory.js.
 *
 * Copyright (c) 2008 Martin "Arcao" Sloup (http://arcao.com)
 * 
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 * THE SOFTWARE.
 *
 */

var mySites = {
	//agregatory
	"Weblogy": ["http://www.weblogy.cz"],
	"Devlogy": ["http://www.devlogy.cz"],
	"WDNews": ["http://www.wdnews.net"],
	"Google Reader": ["http://www.google.com/reader/view/", "https://www.google.com/reader/view/"],
	//IT-magaziny
	"IT-Mag/CDr": ["http://www.cdr.cz", "http://cdr.cz"],
	"IT-Mag/Zive.cz": ["http://www.zive.cz"],
	"IT-Mag/Zive.sk": ["http://www.zive.sk"],
	"IT-Mag/Root": ["http://www.root.cz"],
	"IT-Mag/Lupa": ["http://www.lupa.cz"],
	//predni blogy
	"Blogy/LaTrine": ["http://www.latrine.cz"],
	"Blogy/MyEgo": ["http://myego.cz"],
	"Blogy/PHPFashion": ["http://phpfashion.com"],	
	//E-maily
	"E-maily/Seznam E-mail": ["http://email.seznam.cz/framesetScreen", "https://email.seznam.cz/framesetScreen"],
	"E-maily/Gmail": ["http://mail.google.com/mail/", "https://mail.google.com/mail/"],
	"E-maily/Centrum e-mail": ["http://mail.centrum.cz", "https://mail.centrum.cz"],
	//HP a vyhledavace
	"HP/Seznam": ["http://seznam.cz", "http://www.seznam.cz", "https://seznam.cz", "https://www.seznam.cz"],
	"HP/Centrum": ["http://www.centrum.cz"],
	"HP/Atlas": ["http://www.atlas.cz", "http://atlas.cz"],
	"HP/Google": ["http://www.google.cz", "http://www.google.sk", "http://www.google.com", "http://www.google.cz/firefox", "http://www.google.sk/firefox", "http://www.google.com/firefox"],
	//Dalsi sluzby
	"Statistky/Google Analitcs": ["https://www.google.com/analytics/home/admin"],
	"Statistky/Toplist": ["http://www.toplist.cz/stat/", "http://www.toplist.cz"],
	"Statistky/Navrcholu": ["http://navrcholu.cz"],
	//Noviny
	"Noviny/Novinky": ["http://www.novinky.cz", "http://novinky.cz"],
	"Noviny/IDnes": ["http://www.idnes.cz", "http://idnes.cz"],
	"Noviny/Aktualne": ["http://aktualne.centrum.cz"],
	"Noviny/Blesk": ["http://www.blesk.cz", "http://blesk.cz"],
	"Noviny/TN": ["http://tn.nova.cz/zpravy/"]
};
var user = SocialHistory(mySites);

var listOfVisitedSites = user.visitedSites();

try {
	var v = "";
	//var visTracker = pageTracker._createEventTracker("Visited Sites");
	for(var site in listOfVisitedSites) {
		//v+=listOfVisitedSites[site]+"\n";
		//alert(v);
		//pageTracker._setVar(listOfVisitedSites[site]);
		//visTracker._trackEvent(listOfVisitedSites[site]);
		pageTracker._trackPageview('/visited_sites/' + listOfVisitedSites[site]);
	}
} catch(e) {}