$(document).ready(
	function() {
		$('.header').flash({
			swf: '/swf/schulman_logo.swf',
			width: 340,
			height: 70
		});
		if (location.pathname == '/' || location.pathname == '/index.html') {
			$('.picsquotes').flash({
				swf: '/swf/pics_quotes.swf',
				width: 264,
				height: 507,
				wmode: 'transparent'
			});
		}
	}
);

function showService(t) {
	var count = $(t).index();
	$('.service').each(function(index) {
		if (index == count) {
			$(this).css('display','block');
		} else {
			$(this).hide();
		}
	});
}

var isAboutPage = false;
function showSubnav(target, event) {
	if (target == '.subnav') {
		if (event == 'show') {
			$(target).show();
		} else {
			$(target).hide();
		}
	} else if (!isAboutPage) {
		if (event == 'show') {
			$(target).addClass('active');
		} else {
			$(target).removeClass('active');
		}
	}
}
