// list of social media icons
// remove any if you don't need them
// or sort the list as you like
var sites = [
	'iwiw',
	'startlap',
	'delicious',
	'digg',
	'facebook',
	'googlebuzz',
	'linkedin',
	'stumbleupon',
	'twitter'
]

// select an icon theme by removing the comment markers
// be sure that only one of the lines are not commented!
// var icons = 'default';
var icons = 'mini';
// var icons = 'small';
// var icons = 'medium';
// var icons = 'big';
// var icons = 'huge';

// you can add your own url & title here if you like
// e.g.: var url = myURLfunction();
// be sure to encode your urls!
var url = encodeURIComponent(location.href), // this takes the url of the page
	title = encodeURIComponent(document.title); // this takes the title of the page


