Typostream.applyMySelectors = function()
{
		Typostream.applySelector('.blog-content h4', 11,
		{
			'font-family': 'Sui Generis',
			'fill': 'white',
			'font-size': '18pt',
			'font-weight': 700,
			'text-transform': 'uppercase'
		});

		Typostream.applySelector('.blog-post h3 a', 12,
		{
			'font-family': 'Sui Generis',
			'fill': 'white',
			'font-size': '19pt',
			'font-weight': 700,
			'text-transform': 'uppercase'
		});

		Typostream.applySelector('.blog-excerpt h3 a', 12,
		{
			'font-family': 'Sui Generis',
			'fill': 'white',
			'font-size': '12pt',
			'font-weight': 700,
			'text-transform': 'uppercase'
		});
		
		Typostream.applySelector('.user-form .buttons button', 21,
		{
			'font-family': 'Sui Generis',
			'fill': 'white',
			'font-size': '8pt',
			'font-weight': 700,
			'text-transform': 'uppercase'
		});

		Typostream.applySelector('.primarynav li a', 12, 
		{
			'font-family': 'Sui Generis',
			'fill': 'black',
			'font-size': '9pt',
			'font-weight': 400,
			'text-transform': 'uppercase'
		});

		Typostream.applySelector('.primarynav li.active a', 22, 
		{
			
			'fill': 'white'
			
		});

		Typostream.applySelector('.primarynav li a:hover', 22,
		{
			'fill': 'white'
		});

}

YAHOO.util.Event.onDOMReady(function() { Typostream.applyMySelectors(); Typostream.applyStyles(); });