$(document).ready(function(){ applyBanners();sifrHeaders();toggleClients(); });

function applyBanners()
{
	var b = $('.banner');
	jQuery.each(b, function() {
		$(this).css('backgroundImage', 'url(\'images/'+$(this).attr('id')+'.jpg\')');
		$(this).hover(function() { $(this).css('backgroundPosition', '0px -147px'); },
		function() { $(this).css('backgroundPosition', '0px 0px'); });
	});
}

function sifrHeaders()
{
	$.sifr({path: 'inc/',save: true});
	$('h1, h2, h4').sifr({ font: 'helconbol' });
}

function toggleClients()
{
	$('.tog').hide();
}

function divtog(id)
{
	$('div#'+id).toggle();
}