$( document ).ready( function(){
	
	
	if( !$.support.transition || !$.support.transform3d){
	
		$( '.button, input[type=submit]' ).addClass( 'no-transitions' );
	
		
		$( '.button, input[type=submit]' ).hover(function(){
			$( this ).addClass( 'hover' );	
	
		}, function(){
			
			$( this ).removeClass( 'hover' );	
		
		});
		
		
	}

});
