// Add your background styles to this list. 
var setOfRandomClassNames = new Array("construction-worker-welder", "nurse", "construction-worker-roofer");
var randomCSS = "body, #container"; 

$(document).ready(function(){

	$("#top-navigation ul").superfish({
		animation:   {opacity:'show',height:'show'}
	});	
	
	$("#county-content, #county-right-column").autocomplete(data, {
		formatItem: function(item) {
		return item.text;
	}
	}).result(function(event, item) {
		location.href = item.url;
	});
	
	$("#sitemap").hide(); 
	
	$('.open-close a').toggle(function() {
		$('#sitemap').slideDown("slow");
		$(this).removeClass('plus').addClass('minus');
	}, function(){
		$('#sitemap').slideUp("slow");
		$(this).removeClass('minus').addClass('plus');
	}); 
	
	$(".mast-head").newsticker();

	
	$(document).pngFix(); 

	$('a[href^="http://"]').click(function(){
		window.open(this.href);
		return false;
	});
	
});