$(document).ready(function() {
	// preload images
	$.preloadCssImages();
	
	// force scrollbar
	$('body').append('<div id="scrollForce"></div>');
	
	// PNG tranparency for IE6
    $('.png').pngfix();
	
	// current links
	$('a.current').click(function() {
		return false;
	});
	
	// lists
	$('li:last','ul').addClass('end');
	
    // external links
    $("a[rel='external']").click(function() {
        $(this).attr('target', '_blank');
    });
	
	// locations navigation
	$('.info').hide();
	$('.contacts').hide();
	$('#hooverInfo').show();
	$('#hooverContacts').show();
	$('#hooverButton').click(function(){
		$('#locationsNav a').removeClass('current');
		$(this).addClass('current');
		$('.info').hide();
		$('.contacts').hide();
		$('#hooverInfo').show();	
		$('#hooverContacts').show();
	});
	$('#roebuckButton').click(function(){
		$('#locationsNav a').removeClass('current');
		$(this).addClass('current');
		$(this).addClass('current');
		$('.info').hide();
		$('.contacts').hide();
		$('#roebuckInfo').show();	
		$('#roebuckContacts').show();
	});
	$('#bessemerButton').click(function(){
		$('#locationsNav a').removeClass('current');
		$(this).addClass('current');
		$(this).addClass('current');
		$('.info').hide();
		$('.contacts').hide();
		$('#bessemerInfo').show();	
		$('#bessemerContacts').show();
	});
	$('#southsideButton').click(function(){
		$('#locationsNav a').removeClass('current');
		$(this).addClass('current');
		$(this).addClass('current');
		$('.info').hide();
		$('.contacts').hide();
		$('#southsideInfo').show();	
		$('#southsideContacts').show();
	});
});