$(function(){
	
	// Logo
	
	$('h1 a').addClass('replaced').html('<img src="img/logo.png" alt="Hawthorns - Specialist Sports and Prestige Cars">');
	
	
	// Buttons
	
	$('a.button').prepend('<span></span>');
	
	
	// First nav item
	
	$('ul.nav li:first').addClass('first')
	$('ul.footerNav li:first').addClass('first')
	
	
	// Scroll to the top
	
	$('.ttt').unbind().bind('click', function(){
		$('html, body').animate({scrollTop:0}, '4000');
		return false;
	});
	
	
	// Trans
	/*
	setInterval(function(){
		
		$('#trans').find('img').last().fadeOut(3000, function(){
			
			$(this).clone().prependTo('#trans');
			$(this).remove();
			$('#trans img').first().show();
			
		});
	
	}, 15000);
	*/
	
	// New window
	
	$('a.newWindow').unbind().bind('click', function(){
		
		window.open(this.href);
		return false;
		
	});
	
	
	// Same height content box
	
	$('#container').css('height', $('.content').height() + 210);
	
	
	// Cufon
	
	/*
	Cufon.replace
		('h2')
		('#numbers strong')
		('#numbers em')
		('#main ul li a', {
			hover: true
		})
		('.button', {textShadow: '1px 1px #111'})
	
	
	// Cufon refreshes
	
	$('.box.small').unbind().bind('mouseenter', function(){
	
		Cufon.refresh('h2')('.button', {textShadow: '1px 1px #111'});
		
	}).bind('mouseleave', function(){
			
		setTimeout(function(){
			Cufon.refresh('h2')('.button', {textShadow: '1px 1px #111'});
		}, 5);
	
	});
	*/
	
	
});


$(window).load(function(){
	$('#container').css('height', $('.content').height() + 210);
});

